├── .codecov.yml ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ └── new_task.md ├── pull_request_template.md └── workflows │ ├── ci.yml │ ├── issues.yaml │ ├── publish-python-package.yml │ ├── semantic-pull-request-check.yml │ └── snyk.yaml ├── .gitignore ├── .venv └── .gitkeep ├── .vscode ├── launch.json └── settings.json ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── MANIFEST.in ├── Pipfile ├── Pipfile.lock ├── README.md ├── crowdin.yaml ├── example_project ├── __init__.py ├── rapid_router_test_settings.py ├── settings.py ├── urls.py └── wsgi.py ├── game ├── __init__.py ├── admin.py ├── app_settings.py ├── cache.py ├── character.py ├── decor.py ├── end_to_end_tests │ ├── __init__.py │ ├── base_game_test.py │ ├── custom_handler.py │ ├── data │ │ └── blockly_solutions │ │ │ ├── complete_level_not_with_full_score.xml │ │ │ ├── crash_going_forward_on_left_turn.xml │ │ │ ├── crash_going_forward_on_right_turn.xml │ │ │ ├── crash_going_forward_on_t_junction.xml │ │ │ ├── crash_going_left_on_t_junction.xml │ │ │ ├── crash_going_right_on_t_junction.xml │ │ │ ├── crash_into_cow_going_forward.xml │ │ │ ├── crash_into_cow_on_crossroads_junction.xml │ │ │ ├── crash_into_cow_on_t_junction.xml │ │ │ ├── crash_into_cow_on_t_junction2.xml │ │ │ ├── crash_into_cow_on_t_junction3.xml │ │ │ ├── crash_into_cow_turning_left.xml │ │ │ ├── crash_into_cow_turning_right.xml │ │ │ ├── crash_turning_left_on_right_turn.xml │ │ │ ├── crash_turning_left_on_straight_road.xml │ │ │ ├── crash_turning_right_on_left_turn.xml │ │ │ ├── crash_turning_right_on_straight_road.xml │ │ │ ├── double_forwards.xml │ │ │ ├── not_delivered_everywhere.xml │ │ │ ├── once_forwards.xml │ │ │ ├── running_a_red_light.xml │ │ │ ├── running_out_of_fuel.xml │ │ │ ├── running_out_of_instructions.xml │ │ │ ├── turn_around_on_left_turn.xml │ │ │ ├── turn_around_on_right_turn.xml │ │ │ ├── turn_around_on_straight_road.xml │ │ │ └── undefined_procedure.xml │ ├── editor_page.py │ ├── game_page.py │ ├── selenium_test_case.py │ ├── test_cow_crashes.py │ ├── test_language_dropdown.py │ ├── test_level_editor.py │ ├── test_level_failures.py │ ├── test_level_selection.py │ ├── test_level_win.py │ ├── test_play_through.py │ ├── test_python_levels.py │ ├── test_regressions.py │ ├── test_saving_workspace.py │ └── test_turning_around.py ├── forms.py ├── level_management.py ├── messages.py ├── migrations │ ├── 0001_squashed_0025_levels_ordering_pt1.py │ ├── 0026_levels_pt2.py │ ├── 0027_change_level_order.py │ ├── 0028_level_disable_route_score.py │ ├── 0029_disable_route_scores.py │ ├── 0029_level_pythonviewenabled.py │ ├── 0030_merge.py │ ├── 0031_python_view.py │ ├── 0032_cannot_turn_left_level.py │ ├── 0033_recursion_level.py │ ├── 0034_joes_level.py │ ├── 0035_disable_route_score_level_70.py │ ├── 0036_level_score_73.py │ ├── 0037_level_score_79.py │ ├── 0038_level_score_40.py │ ├── 0039_second_episodes_release.py │ ├── 0040_auto_20150128_2019.py │ ├── 0041_level_episode_refs.py │ ├── 0042_level_score_73.py │ ├── 0043_auto_20150615_1155.py │ ├── 0044_auto_20150615_1156.py │ ├── 0045_decor_z_index.py │ ├── 0046_set_img_order.py │ ├── 0047_level_70_is_unsolveable.py │ ├── 0048_add_cow_field_and_blocks.py │ ├── 0049_level_score_34.py │ ├── 0050_level_score_40.py │ ├── 0051_level_score_49.py │ ├── 0052_attempt_night_mode.py │ ├── 0053_level_70_is_unsolveable_again.py │ ├── 0054_disable_route_score_for_levels_69_and_74.py │ ├── 0055_support_multiple_attempts.py │ ├── 0056_mark_all_attempts_as_best.py │ ├── 0057_workspace_language_enabled.py │ ├── 0058_level_theme_name.py │ ├── 0059_theme_name_data.py │ ├── 0060_auto_20160208_2144.py │ ├── 0061_auto_20160208_2144.py │ ├── 0062_rm_old_theme_decor_models.py │ ├── 0063_level_character_name.py │ ├── 0064_character_name_data.py │ ├── 0065_rename_old_character_field.py │ ├── 0066_rm_character_model.py │ ├── 0067_level_score_27.py │ ├── 0068_fix_episodes_order.py │ ├── 0069_remove_user_levels_from_episodes.py │ ├── 0070_update_strings_unicode.py │ ├── 0071_use_common_models.py │ ├── 0072_level_50_solution.py │ ├── 0073_level_75_solution.py │ ├── 0074_level_74_solution.py │ ├── 0075_level_48_houses.py │ ├── 0076_level_locked_for_class.py │ ├── 0077_alter_level_next_level.py │ ├── 0078_add_block_types.py │ ├── 0079_populate_block_type_add_cow_blocks.py │ ├── 0080_level_disable_algorithm_score.py │ ├── 0081_first_12_levels_no_algo_score.py │ ├── 0082_level_43_solution.py │ ├── 0083_add_cows_to_existing_levels.py │ ├── 0084_alter_block_block_type.py │ ├── 0085_add_new_blocks.py │ ├── 0086_loop_levels.py │ ├── 0087_workspace_python_view_enabled.py │ ├── 0088_rename_episodes.py │ ├── 0089_episodes_in_development.py │ ├── 0090_add_missing_model_solutions.py │ ├── 0091_disable_algo_score_if_no_model_solution.py │ ├── 0092_disable_algo_score_in_custom_levels.py │ ├── 0093_alter_level_character_name.py │ ├── 0094_add_hint_lesson_subtitle_to_levels.py │ ├── 0095_level_commands.py │ ├── 0096_alter_level_commands.py │ ├── 0097_add_python_den_levels.py │ ├── 0098_add_episode_link_fields.py │ ├── 0099_python_episodes_links.py │ ├── 0100_reorder_python_levels.py │ ├── 0101_rename_episodes.py │ ├── 0102_reoder_episodes_13_14.py │ ├── 0103_level_1015_solution.py │ ├── 0104_remove_level_direct_drive.py │ ├── 0105_delete_invalid_attempts.py │ ├── 0106_fields_to_snake_case.py │ ├── 0107_rename_worksheet_link_episode_student_worksheet_link.py │ ├── 0108_episode_indy_worksheet_link.py │ ├── 0109_create_episodes_23_and_24.py │ ├── 0110_remove_episode_indy_worksheet_link_and_more.py │ ├── 0111_create_worksheets.py │ ├── 0112_worksheet_locked_classes.py │ ├── 0113_level_needs_approval.py │ ├── 0114_default_and_non_student_levels_no_approval.py │ ├── 0115_level_level__default_does_not_need_approval.py │ ├── 0116_update_worksheet_video_links.py │ ├── 0117_update_solutions_to_if_else.py │ └── __init__.py ├── models.py ├── permissions.py ├── pipeline_compilers │ ├── __init__.py │ └── libsass_compiler.py ├── python_den_urls.py ├── random_road.py ├── serializers.py ├── static │ ├── django_reverse_js │ │ └── js │ │ │ └── reverse.js │ ├── game │ │ ├── css │ │ │ ├── LilitaOne-Regular.ttf │ │ │ ├── backgrounds.css │ │ │ ├── dataTables.custom.css │ │ │ ├── dataTables.fixedColumns.css │ │ │ ├── dataTables.jqueryui.css │ │ │ ├── dropdown.css │ │ │ ├── editor.css │ │ │ ├── game.css │ │ │ ├── game_screen.css │ │ │ ├── input.css │ │ │ ├── jquery.dataTables.css │ │ │ ├── level_editor.css │ │ │ ├── level_moderation.css │ │ │ ├── level_selection.css │ │ │ ├── level_share.css │ │ │ ├── logged_students.css │ │ │ ├── pqselect.min.css │ │ │ ├── pqselect.multiselect.css │ │ │ ├── scoreboard.css │ │ │ ├── settings.css │ │ │ └── skulpt │ │ │ │ ├── codemirror.css │ │ │ │ ├── eclipse.css │ │ │ │ └── solarized.css │ │ ├── image │ │ │ ├── Clarice.svg │ │ │ ├── Clarice_Jersey.svg │ │ │ ├── Clarice_Jersey_uncropped.svg │ │ │ ├── Clarice_uncropped.svg │ │ │ ├── Clarice_v1.svg │ │ │ ├── Clarice_v2.svg │ │ │ ├── OcadoCFC.svg │ │ │ ├── OcadoCFC_no_road.svg │ │ │ ├── Python_Den_hero_student.png │ │ │ ├── Python_levels_page.svg │ │ │ ├── RR-title.png │ │ │ ├── RapidRouter_logo_type_only.svg │ │ │ ├── RapidRouter_logo_w_BG.svg │ │ │ ├── RapidRouter_logo_wo_BG.svg │ │ │ ├── actions │ │ │ │ ├── btn_zoom_in.svg │ │ │ │ ├── btn_zoom_out.svg │ │ │ │ ├── deliver.svg │ │ │ │ ├── forward.svg │ │ │ │ ├── left.svg │ │ │ │ ├── right.svg │ │ │ │ ├── turn_around.svg │ │ │ │ └── wait.svg │ │ │ ├── asc.gif │ │ │ ├── avatars │ │ │ │ └── default-avatar.jpeg │ │ │ ├── bg.gif │ │ │ ├── btnMute.svg │ │ │ ├── btnReset.svg │ │ │ ├── characters │ │ │ │ ├── front_view │ │ │ │ │ ├── Dee.svg │ │ │ │ │ ├── Electric_van.svg │ │ │ │ │ ├── Kirsty.svg │ │ │ │ │ ├── Nigel.svg │ │ │ │ │ ├── Phil.svg │ │ │ │ │ ├── Van.svg │ │ │ │ │ └── Wes.svg │ │ │ │ └── top_view │ │ │ │ │ ├── Dee.svg │ │ │ │ │ ├── Electric_van.svg │ │ │ │ │ ├── Kirsty.svg │ │ │ │ │ ├── Nigel.svg │ │ │ │ │ ├── Phil.svg │ │ │ │ │ ├── Sleigh.svg │ │ │ │ │ ├── Van.svg │ │ │ │ │ ├── Van_wreckage.svg │ │ │ │ │ └── Wes.svg │ │ │ ├── coins │ │ │ │ ├── coin_5050_dots.svg │ │ │ │ ├── coin_5050_transparent.svg │ │ │ │ ├── coin_copper.svg │ │ │ │ ├── coin_empty_dots.svg │ │ │ │ ├── coin_empty_transparent.svg │ │ │ │ ├── coin_gold.svg │ │ │ │ └── coin_silver.svg │ │ │ ├── dataTables │ │ │ │ ├── Sorting icons.psd │ │ │ │ ├── sort_asc.png │ │ │ │ ├── sort_asc_disabled.png │ │ │ │ ├── sort_both.png │ │ │ │ ├── sort_desc.png │ │ │ │ └── sort_desc_disabled.png │ │ │ ├── decor │ │ │ │ ├── city │ │ │ │ │ ├── bush.svg │ │ │ │ │ ├── hospital.svg │ │ │ │ │ ├── house.svg │ │ │ │ │ ├── pavementTile.png │ │ │ │ │ ├── school.svg │ │ │ │ │ ├── shop.svg │ │ │ │ │ └── solar_panel.svg │ │ │ │ ├── farm │ │ │ │ │ ├── bush.svg │ │ │ │ │ ├── cfc.svg │ │ │ │ │ ├── cfc_black.svg │ │ │ │ │ ├── crops.svg │ │ │ │ │ ├── house1.svg │ │ │ │ │ ├── house2.svg │ │ │ │ │ ├── solar_panel.svg │ │ │ │ │ ├── tile1.svg │ │ │ │ │ ├── tree1.svg │ │ │ │ │ └── tree2.svg │ │ │ │ ├── grass │ │ │ │ │ ├── bush.svg │ │ │ │ │ ├── cfc.svg │ │ │ │ │ ├── house.svg │ │ │ │ │ ├── pond.svg │ │ │ │ │ ├── solar_panel.svg │ │ │ │ │ ├── tile1.svg │ │ │ │ │ ├── tree1.svg │ │ │ │ │ └── tree2.svg │ │ │ │ └── snow │ │ │ │ │ ├── barn.svg │ │ │ │ │ ├── bush.svg │ │ │ │ │ ├── cfc.svg │ │ │ │ │ ├── crops.svg │ │ │ │ │ ├── hospital.svg │ │ │ │ │ ├── house.svg │ │ │ │ │ ├── house1.svg │ │ │ │ │ ├── house2.svg │ │ │ │ │ ├── pond.svg │ │ │ │ │ ├── school.svg │ │ │ │ │ ├── shop.svg │ │ │ │ │ ├── solar_panel.svg │ │ │ │ │ ├── tile1.svg │ │ │ │ │ ├── tile2.svg │ │ │ │ │ ├── tree1.svg │ │ │ │ │ └── tree2.svg │ │ │ ├── desc.gif │ │ │ ├── electric_van.svg │ │ │ ├── empty.svg │ │ │ ├── fruit │ │ │ │ ├── apple.svg │ │ │ │ ├── apple1.svg │ │ │ │ ├── apple2.svg │ │ │ │ ├── banana.svg │ │ │ │ ├── banana1.svg │ │ │ │ ├── banana2.svg │ │ │ │ └── orange.svg │ │ │ ├── fuelGauge.svg │ │ │ ├── fuelGaugePointer.svg │ │ │ ├── icons │ │ │ │ ├── add.svg │ │ │ │ ├── add_house.svg │ │ │ │ ├── add_road.svg │ │ │ │ ├── big_code_mode.svg │ │ │ │ ├── blockly.svg │ │ │ │ ├── character.svg │ │ │ │ ├── clear.svg │ │ │ │ ├── day.svg │ │ │ │ ├── decor.svg │ │ │ │ ├── delete_decor.svg │ │ │ │ ├── delete_house.svg │ │ │ │ ├── delete_road.svg │ │ │ │ ├── description.svg │ │ │ │ ├── fast.svg │ │ │ │ ├── help.svg │ │ │ │ ├── hide.svg │ │ │ │ ├── hide_button.svg │ │ │ │ ├── hint.svg │ │ │ │ ├── if_else.svg │ │ │ │ ├── load.svg │ │ │ │ ├── map.svg │ │ │ │ ├── muted.svg │ │ │ │ ├── night.svg │ │ │ │ ├── origin.svg │ │ │ │ ├── pause.svg │ │ │ │ ├── play.svg │ │ │ │ ├── print.svg │ │ │ │ ├── python.svg │ │ │ │ ├── quit.svg │ │ │ │ ├── random.svg │ │ │ │ ├── save.svg │ │ │ │ ├── share.svg │ │ │ │ ├── show.svg │ │ │ │ ├── slow.svg │ │ │ │ ├── solve.svg │ │ │ │ ├── step.svg │ │ │ │ ├── stop.svg │ │ │ │ └── unmuted.svg │ │ │ ├── if_else_example.png │ │ │ ├── key.svg │ │ │ ├── ocadoVan_big.svg │ │ │ ├── package.svg │ │ │ ├── pigeon.svg │ │ │ ├── python_den_header.svg │ │ │ ├── sp_cow.svg │ │ │ ├── speedoFuel1.svg │ │ │ ├── speedoFuel1_fuel_pointer.svg │ │ │ ├── speedoFuel1_meter.svg │ │ │ ├── speedoFuel1_speed_pointer.svg │ │ │ ├── speedoFuel2.svg │ │ │ ├── speedoFuel2_fuel_pointer.svg │ │ │ ├── speedoFuel2_meter.svg │ │ │ ├── speedoFuel2_speed_pointer.svg │ │ │ ├── speedoFuel_v2.svg │ │ │ ├── trafficLight_green.svg │ │ │ ├── trafficLight_red.svg │ │ │ ├── trashcan.svg │ │ │ ├── trashcan_lid_closed.svg │ │ │ ├── trashcan_lid_open.svg │ │ │ ├── van.svg │ │ │ ├── van_small.svg │ │ │ ├── van_small2.svg │ │ │ └── zebraCrossing.svg │ │ ├── js │ │ │ ├── animation.js │ │ │ ├── blockly │ │ │ │ ├── blockly_compressed.js │ │ │ │ ├── blockly_uncompressed.js │ │ │ │ ├── blocks_compressed.js │ │ │ │ ├── javascript_compressed.js │ │ │ │ ├── media │ │ │ │ │ ├── 1x1.gif │ │ │ │ │ ├── click.mp3 │ │ │ │ │ ├── click.ogg │ │ │ │ │ ├── click.wav │ │ │ │ │ ├── delete.mp3 │ │ │ │ │ ├── delete.ogg │ │ │ │ │ ├── delete.wav │ │ │ │ │ ├── disconnect.mp3 │ │ │ │ │ ├── disconnect.ogg │ │ │ │ │ ├── disconnect.wav │ │ │ │ │ ├── handclosed.cur │ │ │ │ │ ├── handdelete.cur │ │ │ │ │ ├── handopen.cur │ │ │ │ │ ├── quote0.png │ │ │ │ │ ├── quote1.png │ │ │ │ │ ├── sprites.png │ │ │ │ │ └── sprites.svg │ │ │ │ ├── msg │ │ │ │ │ ├── js │ │ │ │ │ │ ├── ab.js │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ ├── az.js │ │ │ │ │ │ ├── ba.js │ │ │ │ │ │ ├── bcc.js │ │ │ │ │ │ ├── be-tarask.js │ │ │ │ │ │ ├── be.js │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ ├── bn.js │ │ │ │ │ │ ├── br.js │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── diq.js │ │ │ │ │ │ ├── dty.js │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ ├── en-gb.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── et.js │ │ │ │ │ │ ├── eu.js │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ ├── gor.js │ │ │ │ │ │ ├── ha.js │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ ├── hi.js │ │ │ │ │ │ ├── hrx.js │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ ├── hy.js │ │ │ │ │ │ ├── ia.js │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ ├── ig.js │ │ │ │ │ │ ├── is.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ ├── kab.js │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ ├── lb.js │ │ │ │ │ │ ├── lki.js │ │ │ │ │ │ ├── lo.js │ │ │ │ │ │ ├── lrc.js │ │ │ │ │ │ ├── lt.js │ │ │ │ │ │ ├── lv.js │ │ │ │ │ │ ├── mk.js │ │ │ │ │ │ ├── mnw.js │ │ │ │ │ │ ├── ms.js │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── oc.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pms.js │ │ │ │ │ │ ├── pt-br.js │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ ├── ro.js │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ ├── sc.js │ │ │ │ │ │ ├── sd.js │ │ │ │ │ │ ├── shn.js │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ ├── skr-arab.js │ │ │ │ │ │ ├── sl.js │ │ │ │ │ │ ├── sq.js │ │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ │ ├── sr.js │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ ├── ta.js │ │ │ │ │ │ ├── tcy.js │ │ │ │ │ │ ├── te.js │ │ │ │ │ │ ├── th.js │ │ │ │ │ │ ├── tl.js │ │ │ │ │ │ ├── tlh.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ ├── ug-arab.js │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ ├── ur.js │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ ├── xmf.js │ │ │ │ │ │ ├── yo.js │ │ │ │ │ │ ├── zh-hans.js │ │ │ │ │ │ └── zh-hant.js │ │ │ │ │ ├── json │ │ │ │ │ │ ├── ab.json │ │ │ │ │ │ ├── ar.json │ │ │ │ │ │ ├── az.json │ │ │ │ │ │ ├── ba.json │ │ │ │ │ │ ├── bcc.json │ │ │ │ │ │ ├── be-tarask.json │ │ │ │ │ │ ├── be.json │ │ │ │ │ │ ├── bg.json │ │ │ │ │ │ ├── bn.json │ │ │ │ │ │ ├── br.json │ │ │ │ │ │ ├── ca.json │ │ │ │ │ │ ├── constants.json │ │ │ │ │ │ ├── cs.json │ │ │ │ │ │ ├── da.json │ │ │ │ │ │ ├── de.json │ │ │ │ │ │ ├── diq.json │ │ │ │ │ │ ├── dty.json │ │ │ │ │ │ ├── el.json │ │ │ │ │ │ ├── en-gb.json │ │ │ │ │ │ ├── en.json │ │ │ │ │ │ ├── eo.json │ │ │ │ │ │ ├── es.json │ │ │ │ │ │ ├── et.json │ │ │ │ │ │ ├── eu.json │ │ │ │ │ │ ├── fa.json │ │ │ │ │ │ ├── fi.json │ │ │ │ │ │ ├── fr.json │ │ │ │ │ │ ├── gl.json │ │ │ │ │ │ ├── gor.json │ │ │ │ │ │ ├── ha.json │ │ │ │ │ │ ├── he.json │ │ │ │ │ │ ├── hi.json │ │ │ │ │ │ ├── hrx.json │ │ │ │ │ │ ├── hu.json │ │ │ │ │ │ ├── hy.json │ │ │ │ │ │ ├── ia.json │ │ │ │ │ │ ├── id.json │ │ │ │ │ │ ├── ig.json │ │ │ │ │ │ ├── is.json │ │ │ │ │ │ ├── it.json │ │ │ │ │ │ ├── ja.json │ │ │ │ │ │ ├── kab.json │ │ │ │ │ │ ├── ko.json │ │ │ │ │ │ ├── lb.json │ │ │ │ │ │ ├── lki.json │ │ │ │ │ │ ├── lo.json │ │ │ │ │ │ ├── lrc.json │ │ │ │ │ │ ├── lt.json │ │ │ │ │ │ ├── lv.json │ │ │ │ │ │ ├── mk.json │ │ │ │ │ │ ├── mnw.json │ │ │ │ │ │ ├── ms.json │ │ │ │ │ │ ├── nb.json │ │ │ │ │ │ ├── nl.json │ │ │ │ │ │ ├── oc.json │ │ │ │ │ │ ├── pl.json │ │ │ │ │ │ ├── pms.json │ │ │ │ │ │ ├── pt-br.json │ │ │ │ │ │ ├── pt.json │ │ │ │ │ │ ├── qqq.json │ │ │ │ │ │ ├── ro.json │ │ │ │ │ │ ├── ru.json │ │ │ │ │ │ ├── sc.json │ │ │ │ │ │ ├── sd.json │ │ │ │ │ │ ├── shn.json │ │ │ │ │ │ ├── sk.json │ │ │ │ │ │ ├── skr-arab.json │ │ │ │ │ │ ├── sl.json │ │ │ │ │ │ ├── sq.json │ │ │ │ │ │ ├── sr-latn.json │ │ │ │ │ │ ├── sr.json │ │ │ │ │ │ ├── sv.json │ │ │ │ │ │ ├── synonyms.json │ │ │ │ │ │ ├── ta.json │ │ │ │ │ │ ├── tcy.json │ │ │ │ │ │ ├── te.json │ │ │ │ │ │ ├── th.json │ │ │ │ │ │ ├── tl.json │ │ │ │ │ │ ├── tlh.json │ │ │ │ │ │ ├── tr.json │ │ │ │ │ │ ├── ug-arab.json │ │ │ │ │ │ ├── uk.json │ │ │ │ │ │ ├── ur.json │ │ │ │ │ │ ├── vi.json │ │ │ │ │ │ ├── xmf.json │ │ │ │ │ │ ├── yo.json │ │ │ │ │ │ ├── zh-hans.json │ │ │ │ │ │ └── zh-hant.json │ │ │ │ │ └── messages.js │ │ │ │ ├── python_compressed.js │ │ │ │ └── version.txt │ │ │ ├── blocklyCompiler.js │ │ │ ├── blocklyControl.js │ │ │ ├── blocklyCustomBlocks.js │ │ │ ├── blocklyCustomisations.js │ │ │ ├── blocklyMessages.js │ │ │ ├── button.js │ │ │ ├── character.js │ │ │ ├── coordinate.js │ │ │ ├── cow.js │ │ │ ├── dataTables.fixedColumns.js │ │ │ ├── destination.js │ │ │ ├── drawing.js │ │ │ ├── drawingConstants.js │ │ │ ├── editor.js │ │ │ ├── event.js │ │ │ ├── foundation │ │ │ │ ├── foundation.min.js │ │ │ │ ├── foundation │ │ │ │ │ ├── foundation.abide.js │ │ │ │ │ ├── foundation.accordion.js │ │ │ │ │ ├── foundation.alert.js │ │ │ │ │ ├── foundation.clearing.js │ │ │ │ │ ├── foundation.dropdown.js │ │ │ │ │ ├── foundation.equalizer.js │ │ │ │ │ ├── foundation.interchange.js │ │ │ │ │ ├── foundation.joyride.js │ │ │ │ │ ├── foundation.js │ │ │ │ │ ├── foundation.magellan.js │ │ │ │ │ ├── foundation.offcanvas.js │ │ │ │ │ ├── foundation.orbit.js │ │ │ │ │ ├── foundation.reveal.js │ │ │ │ │ ├── foundation.slider.js │ │ │ │ │ ├── foundation.tab.js │ │ │ │ │ ├── foundation.tooltip.js │ │ │ │ │ └── foundation.topbar.js │ │ │ │ └── vendor │ │ │ │ │ ├── fastclick.js │ │ │ │ │ ├── jquery.js │ │ │ │ │ ├── js.cookie.min.js │ │ │ │ │ ├── modernizr.js │ │ │ │ │ └── placeholder.js │ │ │ ├── fpsmeter.js │ │ │ ├── game.js │ │ │ ├── handlebars.runtime-v4.7.7.js │ │ │ ├── howler.js │ │ │ ├── jquery.dataTables.min.js │ │ │ ├── jquery.js │ │ │ ├── jquery.outerhtml.js │ │ │ ├── jquery.touchy.min.js │ │ │ ├── level_editor.js │ │ │ ├── level_editor │ │ │ │ ├── level_save_state.js │ │ │ │ └── owned_levels.js │ │ │ ├── level_moderation.js │ │ │ ├── level_selection.js │ │ │ ├── loadLanguages.js │ │ │ ├── map.js │ │ │ ├── messages.js │ │ │ ├── mobile-detect.min.js │ │ │ ├── model.js │ │ │ ├── node.js │ │ │ ├── pathFinder.js │ │ │ ├── program.js │ │ │ ├── pythonControl.js │ │ │ ├── raphael.js │ │ │ ├── saving.js │ │ │ ├── scoreboard.js │ │ │ ├── scoreboardSharedLevels.js │ │ │ ├── sharing.js │ │ │ ├── skulpt │ │ │ │ ├── codemirror.js │ │ │ │ ├── python.js │ │ │ │ ├── skulpt-stdlib.js │ │ │ │ └── skulpt.min.js │ │ │ ├── sound.js │ │ │ ├── svginnerhtml.js │ │ │ ├── tab.js │ │ │ ├── templates.js │ │ │ ├── trafficLight.js │ │ │ ├── utils.js │ │ │ └── van.js │ │ ├── raphael_image │ │ │ ├── Clarice.svg │ │ │ ├── Clarice_Jersey.svg │ │ │ ├── Clarice_v1.svg │ │ │ ├── Clarice_v2.svg │ │ │ ├── characters │ │ │ │ └── top_view │ │ │ │ │ ├── Dee.svg │ │ │ │ │ ├── Electric_van.svg │ │ │ │ │ ├── Kirsty.svg │ │ │ │ │ ├── Nigel.svg │ │ │ │ │ ├── Phil.svg │ │ │ │ │ ├── Sleigh.svg │ │ │ │ │ ├── Van.svg │ │ │ │ │ ├── Van2.svg │ │ │ │ │ ├── Van_wreckage.svg │ │ │ │ │ ├── VeilOfNight.svg │ │ │ │ │ └── Wes.svg │ │ │ ├── decor │ │ │ │ ├── city │ │ │ │ │ ├── bush.svg │ │ │ │ │ ├── hospital.svg │ │ │ │ │ ├── house.svg │ │ │ │ │ ├── pavementTile.png │ │ │ │ │ ├── school.svg │ │ │ │ │ ├── shop.svg │ │ │ │ │ └── solar_panel.svg │ │ │ │ ├── farm │ │ │ │ │ ├── bush.svg │ │ │ │ │ ├── cfc.svg │ │ │ │ │ ├── cfc_black.svg │ │ │ │ │ ├── crops.svg │ │ │ │ │ ├── house1.svg │ │ │ │ │ ├── house2.svg │ │ │ │ │ ├── solar_panel.svg │ │ │ │ │ ├── tile1.svg │ │ │ │ │ ├── tree1.svg │ │ │ │ │ └── tree2.svg │ │ │ │ ├── grass │ │ │ │ │ ├── bush.svg │ │ │ │ │ ├── cfc.svg │ │ │ │ │ ├── house.svg │ │ │ │ │ ├── pond.svg │ │ │ │ │ ├── solar_panel.svg │ │ │ │ │ ├── tile1.svg │ │ │ │ │ ├── tree1.svg │ │ │ │ │ └── tree2.svg │ │ │ │ └── snow │ │ │ │ │ ├── barn.svg │ │ │ │ │ ├── bush.svg │ │ │ │ │ ├── cfc.svg │ │ │ │ │ ├── crops.svg │ │ │ │ │ ├── hospital.svg │ │ │ │ │ ├── house.svg │ │ │ │ │ ├── house1.svg │ │ │ │ │ ├── house2.svg │ │ │ │ │ ├── pond.svg │ │ │ │ │ ├── school.svg │ │ │ │ │ ├── shop.svg │ │ │ │ │ ├── solar_panel.svg │ │ │ │ │ ├── tile1.svg │ │ │ │ │ ├── tile2.svg │ │ │ │ │ ├── tree1.svg │ │ │ │ │ └── tree2.svg │ │ │ ├── fire.svg │ │ │ ├── pigeon.svg │ │ │ ├── road_tiles │ │ │ │ ├── path │ │ │ │ │ ├── crossroads.svg │ │ │ │ │ ├── dead_end.svg │ │ │ │ │ ├── straight.svg │ │ │ │ │ ├── t_junction.svg │ │ │ │ │ └── turn.svg │ │ │ │ └── road │ │ │ │ │ ├── crossroads.svg │ │ │ │ │ ├── dead_end.svg │ │ │ │ │ ├── straight.svg │ │ │ │ │ ├── t_junction.svg │ │ │ │ │ └── turn.svg │ │ │ ├── sleigh_wreckage.svg │ │ │ ├── smoke.svg │ │ │ ├── sp_cow.svg │ │ │ ├── trafficLight_green.svg │ │ │ ├── trafficLight_red.svg │ │ │ └── van_wreckage.svg │ │ ├── sass │ │ │ ├── _foundation_overrides.scss │ │ │ ├── _mixins.scss │ │ │ ├── _styles.scss │ │ │ ├── _variables.scss │ │ │ ├── foundation.scss │ │ │ ├── foundation │ │ │ │ ├── _functions.scss │ │ │ │ ├── _settings.scss │ │ │ │ └── components │ │ │ │ │ ├── _accordion.scss │ │ │ │ │ ├── _alert-boxes.scss │ │ │ │ │ ├── _block-grid.scss │ │ │ │ │ ├── _breadcrumbs.scss │ │ │ │ │ ├── _button-groups.scss │ │ │ │ │ ├── _buttons.scss │ │ │ │ │ ├── _clearing.scss │ │ │ │ │ ├── _dropdown-buttons.scss │ │ │ │ │ ├── _dropdown.scss │ │ │ │ │ ├── _flex-video.scss │ │ │ │ │ ├── _forms.scss │ │ │ │ │ ├── _global.scss │ │ │ │ │ ├── _grid.scss │ │ │ │ │ ├── _icon-bar.scss │ │ │ │ │ ├── _inline-lists.scss │ │ │ │ │ ├── _joyride.scss │ │ │ │ │ ├── _keystrokes.scss │ │ │ │ │ ├── _labels.scss │ │ │ │ │ ├── _magellan.scss │ │ │ │ │ ├── _offcanvas.scss │ │ │ │ │ ├── _orbit.scss │ │ │ │ │ ├── _pagination.scss │ │ │ │ │ ├── _panels.scss │ │ │ │ │ ├── _pricing-tables.scss │ │ │ │ │ ├── _progress-bars.scss │ │ │ │ │ ├── _range-slider.scss │ │ │ │ │ ├── _reveal.scss │ │ │ │ │ ├── _side-nav.scss │ │ │ │ │ ├── _split-buttons.scss │ │ │ │ │ ├── _sub-nav.scss │ │ │ │ │ ├── _switch.scss │ │ │ │ │ ├── _switches.scss │ │ │ │ │ ├── _tables.scss │ │ │ │ │ ├── _tabs.scss │ │ │ │ │ ├── _thumbs.scss │ │ │ │ │ ├── _toolbar.scss │ │ │ │ │ ├── _tooltips.scss │ │ │ │ │ ├── _top-bar.scss │ │ │ │ │ ├── _type.scss │ │ │ │ │ └── _visibility.scss │ │ │ └── game.scss │ │ └── sound │ │ │ ├── clown_horn.mp3 │ │ │ ├── clown_horn.ogg │ │ │ ├── cow.mp3 │ │ │ ├── cow.ogg │ │ │ ├── cow_original.mp3 │ │ │ ├── cow_original.ogg │ │ │ ├── crash.mp3 │ │ │ ├── crash.ogg │ │ │ ├── delivery.mp3 │ │ │ ├── delivery.ogg │ │ │ ├── electric_van_starting.mp3 │ │ │ ├── electric_van_starting.ogg │ │ │ ├── failure.mp3 │ │ │ ├── failure.ogg │ │ │ ├── horn.mp3 │ │ │ ├── horn.ogg │ │ │ ├── moving.mp3 │ │ │ ├── moving.ogg │ │ │ ├── pigeon.mp3 │ │ │ ├── pigeon.ogg │ │ │ ├── sleigh_bells.mp3 │ │ │ ├── sleigh_bells.ogg │ │ │ ├── sleigh_crash.mp3 │ │ │ ├── sleigh_crash.ogg │ │ │ ├── starting.mp3 │ │ │ ├── starting.ogg │ │ │ ├── tension.mp3 │ │ │ ├── tension.ogg │ │ │ ├── win.mp3 │ │ │ └── win.ogg │ ├── icons │ │ ├── dee-192x192.png │ │ ├── dee-384x384.png │ │ └── dee-512x512.png │ └── manifest.json ├── templates │ └── game │ │ ├── base.html │ │ ├── basenonav.html │ │ ├── crowdin.html │ │ ├── error.html │ │ ├── game.html │ │ ├── level_editor.html │ │ ├── level_moderation.html │ │ ├── level_selection.html │ │ ├── logged_students.html │ │ ├── python_den_level_selection.html │ │ ├── python_den_worksheet.html │ │ └── scoreboard.html ├── templatetags │ ├── __init__.py │ └── game │ │ ├── __init__.py │ │ └── utils.py ├── tests │ ├── __init__.py │ ├── migrations │ │ ├── __init__.py │ │ └── test_migration_fix_episodes_order.py │ ├── test_api.py │ ├── test_level_editor.py │ ├── test_level_moderation.py │ ├── test_level_selection.py │ ├── test_models.py │ ├── test_python_den_worksheet.py │ ├── test_random_road.py │ ├── test_scoreboard.py │ └── utils │ │ ├── __init__.py │ │ ├── attempt.py │ │ ├── episode.py │ │ ├── level.py │ │ ├── locale.py │ │ ├── teacher.py │ │ └── user.py ├── theme.py ├── urls.py └── views │ ├── __init__.py │ ├── api.py │ ├── helper.py │ ├── language_code_conversions.py │ ├── level.py │ ├── level_editor.py │ ├── level_moderation.py │ ├── level_selection.py │ ├── level_solutions.py │ ├── scoreboard.py │ ├── scoreboard_csv.py │ └── worksheet.py ├── handlebars ├── button-dismiss.handlebars └── button-redirect.handlebars ├── manage.py ├── pyproject.toml ├── pytest.ini ├── run ├── setup.cfg ├── setup.py └── spec └── javascripts ├── blocklyControlSpec.js ├── pathFinderSpec.js └── support └── jasmine.yml /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | game/_version.py export-subst 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/new_task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/.github/ISSUE_TEMPLATE/new_task.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/issues.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/.github/workflows/issues.yaml -------------------------------------------------------------------------------- /.github/workflows/publish-python-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/.github/workflows/publish-python-package.yml -------------------------------------------------------------------------------- /.github/workflows/semantic-pull-request-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/.github/workflows/semantic-pull-request-check.yml -------------------------------------------------------------------------------- /.github/workflows/snyk.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/.github/workflows/snyk.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/.gitignore -------------------------------------------------------------------------------- /.venv/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/LICENSE.md -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/README.md -------------------------------------------------------------------------------- /crowdin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/crowdin.yaml -------------------------------------------------------------------------------- /example_project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example_project/rapid_router_test_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/example_project/rapid_router_test_settings.py -------------------------------------------------------------------------------- /example_project/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/example_project/settings.py -------------------------------------------------------------------------------- /example_project/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/example_project/urls.py -------------------------------------------------------------------------------- /example_project/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/example_project/wsgi.py -------------------------------------------------------------------------------- /game/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "7.6.9" 2 | -------------------------------------------------------------------------------- /game/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/admin.py -------------------------------------------------------------------------------- /game/app_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/app_settings.py -------------------------------------------------------------------------------- /game/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/cache.py -------------------------------------------------------------------------------- /game/character.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/character.py -------------------------------------------------------------------------------- /game/decor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/decor.py -------------------------------------------------------------------------------- /game/end_to_end_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/end_to_end_tests/base_game_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/end_to_end_tests/base_game_test.py -------------------------------------------------------------------------------- /game/end_to_end_tests/custom_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/end_to_end_tests/custom_handler.py -------------------------------------------------------------------------------- /game/end_to_end_tests/editor_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/end_to_end_tests/editor_page.py -------------------------------------------------------------------------------- /game/end_to_end_tests/game_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/end_to_end_tests/game_page.py -------------------------------------------------------------------------------- /game/end_to_end_tests/selenium_test_case.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/end_to_end_tests/selenium_test_case.py -------------------------------------------------------------------------------- /game/end_to_end_tests/test_cow_crashes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/end_to_end_tests/test_cow_crashes.py -------------------------------------------------------------------------------- /game/end_to_end_tests/test_language_dropdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/end_to_end_tests/test_language_dropdown.py -------------------------------------------------------------------------------- /game/end_to_end_tests/test_level_editor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/end_to_end_tests/test_level_editor.py -------------------------------------------------------------------------------- /game/end_to_end_tests/test_level_failures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/end_to_end_tests/test_level_failures.py -------------------------------------------------------------------------------- /game/end_to_end_tests/test_level_selection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/end_to_end_tests/test_level_selection.py -------------------------------------------------------------------------------- /game/end_to_end_tests/test_level_win.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/end_to_end_tests/test_level_win.py -------------------------------------------------------------------------------- /game/end_to_end_tests/test_play_through.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/end_to_end_tests/test_play_through.py -------------------------------------------------------------------------------- /game/end_to_end_tests/test_python_levels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/end_to_end_tests/test_python_levels.py -------------------------------------------------------------------------------- /game/end_to_end_tests/test_regressions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/end_to_end_tests/test_regressions.py -------------------------------------------------------------------------------- /game/end_to_end_tests/test_saving_workspace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/end_to_end_tests/test_saving_workspace.py -------------------------------------------------------------------------------- /game/end_to_end_tests/test_turning_around.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/end_to_end_tests/test_turning_around.py -------------------------------------------------------------------------------- /game/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/forms.py -------------------------------------------------------------------------------- /game/level_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/level_management.py -------------------------------------------------------------------------------- /game/messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/messages.py -------------------------------------------------------------------------------- /game/migrations/0001_squashed_0025_levels_ordering_pt1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0001_squashed_0025_levels_ordering_pt1.py -------------------------------------------------------------------------------- /game/migrations/0026_levels_pt2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0026_levels_pt2.py -------------------------------------------------------------------------------- /game/migrations/0027_change_level_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0027_change_level_order.py -------------------------------------------------------------------------------- /game/migrations/0028_level_disable_route_score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0028_level_disable_route_score.py -------------------------------------------------------------------------------- /game/migrations/0029_disable_route_scores.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0029_disable_route_scores.py -------------------------------------------------------------------------------- /game/migrations/0029_level_pythonviewenabled.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0029_level_pythonviewenabled.py -------------------------------------------------------------------------------- /game/migrations/0030_merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0030_merge.py -------------------------------------------------------------------------------- /game/migrations/0031_python_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0031_python_view.py -------------------------------------------------------------------------------- /game/migrations/0032_cannot_turn_left_level.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0032_cannot_turn_left_level.py -------------------------------------------------------------------------------- /game/migrations/0033_recursion_level.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0033_recursion_level.py -------------------------------------------------------------------------------- /game/migrations/0034_joes_level.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0034_joes_level.py -------------------------------------------------------------------------------- /game/migrations/0035_disable_route_score_level_70.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0035_disable_route_score_level_70.py -------------------------------------------------------------------------------- /game/migrations/0036_level_score_73.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0036_level_score_73.py -------------------------------------------------------------------------------- /game/migrations/0037_level_score_79.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0037_level_score_79.py -------------------------------------------------------------------------------- /game/migrations/0038_level_score_40.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0038_level_score_40.py -------------------------------------------------------------------------------- /game/migrations/0039_second_episodes_release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0039_second_episodes_release.py -------------------------------------------------------------------------------- /game/migrations/0040_auto_20150128_2019.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0040_auto_20150128_2019.py -------------------------------------------------------------------------------- /game/migrations/0041_level_episode_refs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0041_level_episode_refs.py -------------------------------------------------------------------------------- /game/migrations/0042_level_score_73.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0042_level_score_73.py -------------------------------------------------------------------------------- /game/migrations/0043_auto_20150615_1155.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0043_auto_20150615_1155.py -------------------------------------------------------------------------------- /game/migrations/0044_auto_20150615_1156.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0044_auto_20150615_1156.py -------------------------------------------------------------------------------- /game/migrations/0045_decor_z_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0045_decor_z_index.py -------------------------------------------------------------------------------- /game/migrations/0046_set_img_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0046_set_img_order.py -------------------------------------------------------------------------------- /game/migrations/0047_level_70_is_unsolveable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0047_level_70_is_unsolveable.py -------------------------------------------------------------------------------- /game/migrations/0048_add_cow_field_and_blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0048_add_cow_field_and_blocks.py -------------------------------------------------------------------------------- /game/migrations/0049_level_score_34.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0049_level_score_34.py -------------------------------------------------------------------------------- /game/migrations/0050_level_score_40.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0050_level_score_40.py -------------------------------------------------------------------------------- /game/migrations/0051_level_score_49.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0051_level_score_49.py -------------------------------------------------------------------------------- /game/migrations/0052_attempt_night_mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0052_attempt_night_mode.py -------------------------------------------------------------------------------- /game/migrations/0053_level_70_is_unsolveable_again.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0053_level_70_is_unsolveable_again.py -------------------------------------------------------------------------------- /game/migrations/0055_support_multiple_attempts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0055_support_multiple_attempts.py -------------------------------------------------------------------------------- /game/migrations/0056_mark_all_attempts_as_best.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0056_mark_all_attempts_as_best.py -------------------------------------------------------------------------------- /game/migrations/0057_workspace_language_enabled.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0057_workspace_language_enabled.py -------------------------------------------------------------------------------- /game/migrations/0058_level_theme_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0058_level_theme_name.py -------------------------------------------------------------------------------- /game/migrations/0059_theme_name_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0059_theme_name_data.py -------------------------------------------------------------------------------- /game/migrations/0060_auto_20160208_2144.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0060_auto_20160208_2144.py -------------------------------------------------------------------------------- /game/migrations/0061_auto_20160208_2144.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0061_auto_20160208_2144.py -------------------------------------------------------------------------------- /game/migrations/0062_rm_old_theme_decor_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0062_rm_old_theme_decor_models.py -------------------------------------------------------------------------------- /game/migrations/0063_level_character_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0063_level_character_name.py -------------------------------------------------------------------------------- /game/migrations/0064_character_name_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0064_character_name_data.py -------------------------------------------------------------------------------- /game/migrations/0065_rename_old_character_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0065_rename_old_character_field.py -------------------------------------------------------------------------------- /game/migrations/0066_rm_character_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0066_rm_character_model.py -------------------------------------------------------------------------------- /game/migrations/0067_level_score_27.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0067_level_score_27.py -------------------------------------------------------------------------------- /game/migrations/0068_fix_episodes_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0068_fix_episodes_order.py -------------------------------------------------------------------------------- /game/migrations/0069_remove_user_levels_from_episodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0069_remove_user_levels_from_episodes.py -------------------------------------------------------------------------------- /game/migrations/0070_update_strings_unicode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0070_update_strings_unicode.py -------------------------------------------------------------------------------- /game/migrations/0071_use_common_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0071_use_common_models.py -------------------------------------------------------------------------------- /game/migrations/0072_level_50_solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0072_level_50_solution.py -------------------------------------------------------------------------------- /game/migrations/0073_level_75_solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0073_level_75_solution.py -------------------------------------------------------------------------------- /game/migrations/0074_level_74_solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0074_level_74_solution.py -------------------------------------------------------------------------------- /game/migrations/0075_level_48_houses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0075_level_48_houses.py -------------------------------------------------------------------------------- /game/migrations/0076_level_locked_for_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0076_level_locked_for_class.py -------------------------------------------------------------------------------- /game/migrations/0077_alter_level_next_level.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0077_alter_level_next_level.py -------------------------------------------------------------------------------- /game/migrations/0078_add_block_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0078_add_block_types.py -------------------------------------------------------------------------------- /game/migrations/0079_populate_block_type_add_cow_blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0079_populate_block_type_add_cow_blocks.py -------------------------------------------------------------------------------- /game/migrations/0080_level_disable_algorithm_score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0080_level_disable_algorithm_score.py -------------------------------------------------------------------------------- /game/migrations/0081_first_12_levels_no_algo_score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0081_first_12_levels_no_algo_score.py -------------------------------------------------------------------------------- /game/migrations/0082_level_43_solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0082_level_43_solution.py -------------------------------------------------------------------------------- /game/migrations/0083_add_cows_to_existing_levels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0083_add_cows_to_existing_levels.py -------------------------------------------------------------------------------- /game/migrations/0084_alter_block_block_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0084_alter_block_block_type.py -------------------------------------------------------------------------------- /game/migrations/0085_add_new_blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0085_add_new_blocks.py -------------------------------------------------------------------------------- /game/migrations/0086_loop_levels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0086_loop_levels.py -------------------------------------------------------------------------------- /game/migrations/0087_workspace_python_view_enabled.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0087_workspace_python_view_enabled.py -------------------------------------------------------------------------------- /game/migrations/0088_rename_episodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0088_rename_episodes.py -------------------------------------------------------------------------------- /game/migrations/0089_episodes_in_development.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0089_episodes_in_development.py -------------------------------------------------------------------------------- /game/migrations/0090_add_missing_model_solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0090_add_missing_model_solutions.py -------------------------------------------------------------------------------- /game/migrations/0092_disable_algo_score_in_custom_levels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0092_disable_algo_score_in_custom_levels.py -------------------------------------------------------------------------------- /game/migrations/0093_alter_level_character_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0093_alter_level_character_name.py -------------------------------------------------------------------------------- /game/migrations/0094_add_hint_lesson_subtitle_to_levels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0094_add_hint_lesson_subtitle_to_levels.py -------------------------------------------------------------------------------- /game/migrations/0095_level_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0095_level_commands.py -------------------------------------------------------------------------------- /game/migrations/0096_alter_level_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0096_alter_level_commands.py -------------------------------------------------------------------------------- /game/migrations/0097_add_python_den_levels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0097_add_python_den_levels.py -------------------------------------------------------------------------------- /game/migrations/0098_add_episode_link_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0098_add_episode_link_fields.py -------------------------------------------------------------------------------- /game/migrations/0099_python_episodes_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0099_python_episodes_links.py -------------------------------------------------------------------------------- /game/migrations/0100_reorder_python_levels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0100_reorder_python_levels.py -------------------------------------------------------------------------------- /game/migrations/0101_rename_episodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0101_rename_episodes.py -------------------------------------------------------------------------------- /game/migrations/0102_reoder_episodes_13_14.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0102_reoder_episodes_13_14.py -------------------------------------------------------------------------------- /game/migrations/0103_level_1015_solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0103_level_1015_solution.py -------------------------------------------------------------------------------- /game/migrations/0104_remove_level_direct_drive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0104_remove_level_direct_drive.py -------------------------------------------------------------------------------- /game/migrations/0105_delete_invalid_attempts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0105_delete_invalid_attempts.py -------------------------------------------------------------------------------- /game/migrations/0106_fields_to_snake_case.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0106_fields_to_snake_case.py -------------------------------------------------------------------------------- /game/migrations/0108_episode_indy_worksheet_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0108_episode_indy_worksheet_link.py -------------------------------------------------------------------------------- /game/migrations/0109_create_episodes_23_and_24.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0109_create_episodes_23_and_24.py -------------------------------------------------------------------------------- /game/migrations/0111_create_worksheets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0111_create_worksheets.py -------------------------------------------------------------------------------- /game/migrations/0112_worksheet_locked_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0112_worksheet_locked_classes.py -------------------------------------------------------------------------------- /game/migrations/0113_level_needs_approval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0113_level_needs_approval.py -------------------------------------------------------------------------------- /game/migrations/0116_update_worksheet_video_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0116_update_worksheet_video_links.py -------------------------------------------------------------------------------- /game/migrations/0117_update_solutions_to_if_else.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/migrations/0117_update_solutions_to_if_else.py -------------------------------------------------------------------------------- /game/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/models.py -------------------------------------------------------------------------------- /game/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/permissions.py -------------------------------------------------------------------------------- /game/pipeline_compilers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/pipeline_compilers/__init__.py -------------------------------------------------------------------------------- /game/pipeline_compilers/libsass_compiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/pipeline_compilers/libsass_compiler.py -------------------------------------------------------------------------------- /game/python_den_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/python_den_urls.py -------------------------------------------------------------------------------- /game/random_road.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/random_road.py -------------------------------------------------------------------------------- /game/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/serializers.py -------------------------------------------------------------------------------- /game/static/django_reverse_js/js/reverse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/django_reverse_js/js/reverse.js -------------------------------------------------------------------------------- /game/static/game/css/LilitaOne-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/css/LilitaOne-Regular.ttf -------------------------------------------------------------------------------- /game/static/game/css/backgrounds.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/css/backgrounds.css -------------------------------------------------------------------------------- /game/static/game/css/dataTables.custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/css/dataTables.custom.css -------------------------------------------------------------------------------- /game/static/game/css/dataTables.fixedColumns.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/css/dataTables.fixedColumns.css -------------------------------------------------------------------------------- /game/static/game/css/dataTables.jqueryui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/css/dataTables.jqueryui.css -------------------------------------------------------------------------------- /game/static/game/css/dropdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/css/dropdown.css -------------------------------------------------------------------------------- /game/static/game/css/editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/css/editor.css -------------------------------------------------------------------------------- /game/static/game/css/game.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/css/game.css -------------------------------------------------------------------------------- /game/static/game/css/game_screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/css/game_screen.css -------------------------------------------------------------------------------- /game/static/game/css/input.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/css/input.css -------------------------------------------------------------------------------- /game/static/game/css/jquery.dataTables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/css/jquery.dataTables.css -------------------------------------------------------------------------------- /game/static/game/css/level_editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/css/level_editor.css -------------------------------------------------------------------------------- /game/static/game/css/level_moderation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/css/level_moderation.css -------------------------------------------------------------------------------- /game/static/game/css/level_selection.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/css/level_selection.css -------------------------------------------------------------------------------- /game/static/game/css/level_share.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/css/level_share.css -------------------------------------------------------------------------------- /game/static/game/css/logged_students.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/css/logged_students.css -------------------------------------------------------------------------------- /game/static/game/css/pqselect.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/css/pqselect.min.css -------------------------------------------------------------------------------- /game/static/game/css/pqselect.multiselect.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/css/pqselect.multiselect.css -------------------------------------------------------------------------------- /game/static/game/css/scoreboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/css/scoreboard.css -------------------------------------------------------------------------------- /game/static/game/css/settings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/css/settings.css -------------------------------------------------------------------------------- /game/static/game/css/skulpt/codemirror.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/css/skulpt/codemirror.css -------------------------------------------------------------------------------- /game/static/game/css/skulpt/eclipse.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/css/skulpt/eclipse.css -------------------------------------------------------------------------------- /game/static/game/css/skulpt/solarized.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/css/skulpt/solarized.css -------------------------------------------------------------------------------- /game/static/game/image/Clarice.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/Clarice.svg -------------------------------------------------------------------------------- /game/static/game/image/Clarice_Jersey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/Clarice_Jersey.svg -------------------------------------------------------------------------------- /game/static/game/image/Clarice_Jersey_uncropped.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/Clarice_Jersey_uncropped.svg -------------------------------------------------------------------------------- /game/static/game/image/Clarice_uncropped.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/Clarice_uncropped.svg -------------------------------------------------------------------------------- /game/static/game/image/Clarice_v1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/Clarice_v1.svg -------------------------------------------------------------------------------- /game/static/game/image/Clarice_v2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/Clarice_v2.svg -------------------------------------------------------------------------------- /game/static/game/image/OcadoCFC.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/OcadoCFC.svg -------------------------------------------------------------------------------- /game/static/game/image/OcadoCFC_no_road.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/OcadoCFC_no_road.svg -------------------------------------------------------------------------------- /game/static/game/image/Python_Den_hero_student.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/Python_Den_hero_student.png -------------------------------------------------------------------------------- /game/static/game/image/Python_levels_page.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/Python_levels_page.svg -------------------------------------------------------------------------------- /game/static/game/image/RR-title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/RR-title.png -------------------------------------------------------------------------------- /game/static/game/image/RapidRouter_logo_type_only.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/RapidRouter_logo_type_only.svg -------------------------------------------------------------------------------- /game/static/game/image/RapidRouter_logo_w_BG.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/RapidRouter_logo_w_BG.svg -------------------------------------------------------------------------------- /game/static/game/image/RapidRouter_logo_wo_BG.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/RapidRouter_logo_wo_BG.svg -------------------------------------------------------------------------------- /game/static/game/image/actions/btn_zoom_in.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/actions/btn_zoom_in.svg -------------------------------------------------------------------------------- /game/static/game/image/actions/btn_zoom_out.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/actions/btn_zoom_out.svg -------------------------------------------------------------------------------- /game/static/game/image/actions/deliver.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/actions/deliver.svg -------------------------------------------------------------------------------- /game/static/game/image/actions/forward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/actions/forward.svg -------------------------------------------------------------------------------- /game/static/game/image/actions/left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/actions/left.svg -------------------------------------------------------------------------------- /game/static/game/image/actions/right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/actions/right.svg -------------------------------------------------------------------------------- /game/static/game/image/actions/turn_around.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/actions/turn_around.svg -------------------------------------------------------------------------------- /game/static/game/image/actions/wait.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/actions/wait.svg -------------------------------------------------------------------------------- /game/static/game/image/asc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/asc.gif -------------------------------------------------------------------------------- /game/static/game/image/avatars/default-avatar.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/avatars/default-avatar.jpeg -------------------------------------------------------------------------------- /game/static/game/image/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/bg.gif -------------------------------------------------------------------------------- /game/static/game/image/btnMute.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/btnMute.svg -------------------------------------------------------------------------------- /game/static/game/image/btnReset.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/btnReset.svg -------------------------------------------------------------------------------- /game/static/game/image/characters/front_view/Dee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/characters/front_view/Dee.svg -------------------------------------------------------------------------------- /game/static/game/image/characters/front_view/Kirsty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/characters/front_view/Kirsty.svg -------------------------------------------------------------------------------- /game/static/game/image/characters/front_view/Nigel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/characters/front_view/Nigel.svg -------------------------------------------------------------------------------- /game/static/game/image/characters/front_view/Phil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/characters/front_view/Phil.svg -------------------------------------------------------------------------------- /game/static/game/image/characters/front_view/Van.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/characters/front_view/Van.svg -------------------------------------------------------------------------------- /game/static/game/image/characters/front_view/Wes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/characters/front_view/Wes.svg -------------------------------------------------------------------------------- /game/static/game/image/characters/top_view/Dee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/characters/top_view/Dee.svg -------------------------------------------------------------------------------- /game/static/game/image/characters/top_view/Electric_van.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/characters/top_view/Electric_van.svg -------------------------------------------------------------------------------- /game/static/game/image/characters/top_view/Kirsty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/characters/top_view/Kirsty.svg -------------------------------------------------------------------------------- /game/static/game/image/characters/top_view/Nigel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/characters/top_view/Nigel.svg -------------------------------------------------------------------------------- /game/static/game/image/characters/top_view/Phil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/characters/top_view/Phil.svg -------------------------------------------------------------------------------- /game/static/game/image/characters/top_view/Sleigh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/characters/top_view/Sleigh.svg -------------------------------------------------------------------------------- /game/static/game/image/characters/top_view/Van.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/characters/top_view/Van.svg -------------------------------------------------------------------------------- /game/static/game/image/characters/top_view/Van_wreckage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/characters/top_view/Van_wreckage.svg -------------------------------------------------------------------------------- /game/static/game/image/characters/top_view/Wes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/characters/top_view/Wes.svg -------------------------------------------------------------------------------- /game/static/game/image/coins/coin_5050_dots.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/coins/coin_5050_dots.svg -------------------------------------------------------------------------------- /game/static/game/image/coins/coin_5050_transparent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/coins/coin_5050_transparent.svg -------------------------------------------------------------------------------- /game/static/game/image/coins/coin_copper.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/coins/coin_copper.svg -------------------------------------------------------------------------------- /game/static/game/image/coins/coin_empty_dots.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/coins/coin_empty_dots.svg -------------------------------------------------------------------------------- /game/static/game/image/coins/coin_empty_transparent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/coins/coin_empty_transparent.svg -------------------------------------------------------------------------------- /game/static/game/image/coins/coin_gold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/coins/coin_gold.svg -------------------------------------------------------------------------------- /game/static/game/image/coins/coin_silver.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/coins/coin_silver.svg -------------------------------------------------------------------------------- /game/static/game/image/dataTables/Sorting icons.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/dataTables/Sorting icons.psd -------------------------------------------------------------------------------- /game/static/game/image/dataTables/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/dataTables/sort_asc.png -------------------------------------------------------------------------------- /game/static/game/image/dataTables/sort_asc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/dataTables/sort_asc_disabled.png -------------------------------------------------------------------------------- /game/static/game/image/dataTables/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/dataTables/sort_both.png -------------------------------------------------------------------------------- /game/static/game/image/dataTables/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/dataTables/sort_desc.png -------------------------------------------------------------------------------- /game/static/game/image/dataTables/sort_desc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/dataTables/sort_desc_disabled.png -------------------------------------------------------------------------------- /game/static/game/image/decor/city/bush.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/decor/city/bush.svg -------------------------------------------------------------------------------- /game/static/game/image/decor/city/hospital.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/decor/city/hospital.svg -------------------------------------------------------------------------------- /game/static/game/image/decor/city/house.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/decor/city/house.svg -------------------------------------------------------------------------------- /game/static/game/image/decor/city/pavementTile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/decor/city/pavementTile.png -------------------------------------------------------------------------------- /game/static/game/image/decor/city/school.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/decor/city/school.svg -------------------------------------------------------------------------------- /game/static/game/image/decor/city/shop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/decor/city/shop.svg -------------------------------------------------------------------------------- /game/static/game/image/decor/city/solar_panel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/decor/city/solar_panel.svg -------------------------------------------------------------------------------- /game/static/game/image/decor/farm/bush.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/decor/farm/bush.svg -------------------------------------------------------------------------------- /game/static/game/image/decor/farm/cfc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/decor/farm/cfc.svg -------------------------------------------------------------------------------- /game/static/game/image/decor/farm/cfc_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/decor/farm/cfc_black.svg -------------------------------------------------------------------------------- /game/static/game/image/decor/farm/crops.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/decor/farm/crops.svg -------------------------------------------------------------------------------- /game/static/game/image/decor/farm/house1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/decor/farm/house1.svg -------------------------------------------------------------------------------- /game/static/game/image/decor/farm/house2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/decor/farm/house2.svg -------------------------------------------------------------------------------- /game/static/game/image/decor/farm/solar_panel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/decor/farm/solar_panel.svg -------------------------------------------------------------------------------- /game/static/game/image/decor/farm/tile1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/decor/farm/tile1.svg -------------------------------------------------------------------------------- /game/static/game/image/decor/farm/tree1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/decor/farm/tree1.svg -------------------------------------------------------------------------------- /game/static/game/image/decor/farm/tree2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/decor/farm/tree2.svg -------------------------------------------------------------------------------- /game/static/game/image/decor/grass/bush.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/decor/grass/bush.svg -------------------------------------------------------------------------------- /game/static/game/image/decor/grass/cfc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/decor/grass/cfc.svg -------------------------------------------------------------------------------- /game/static/game/image/decor/grass/house.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/decor/grass/house.svg -------------------------------------------------------------------------------- /game/static/game/image/decor/grass/pond.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/decor/grass/pond.svg -------------------------------------------------------------------------------- /game/static/game/image/decor/grass/solar_panel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/decor/grass/solar_panel.svg -------------------------------------------------------------------------------- /game/static/game/image/decor/grass/tile1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/decor/grass/tile1.svg -------------------------------------------------------------------------------- /game/static/game/image/decor/grass/tree1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/decor/grass/tree1.svg -------------------------------------------------------------------------------- /game/static/game/image/decor/grass/tree2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/decor/grass/tree2.svg -------------------------------------------------------------------------------- /game/static/game/image/decor/snow/barn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/decor/snow/barn.svg -------------------------------------------------------------------------------- /game/static/game/image/decor/snow/bush.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/decor/snow/bush.svg -------------------------------------------------------------------------------- /game/static/game/image/decor/snow/cfc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/decor/snow/cfc.svg -------------------------------------------------------------------------------- /game/static/game/image/decor/snow/crops.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/decor/snow/crops.svg -------------------------------------------------------------------------------- /game/static/game/image/decor/snow/hospital.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/decor/snow/hospital.svg -------------------------------------------------------------------------------- /game/static/game/image/decor/snow/house.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/decor/snow/house.svg -------------------------------------------------------------------------------- /game/static/game/image/decor/snow/house1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/decor/snow/house1.svg -------------------------------------------------------------------------------- /game/static/game/image/decor/snow/house2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/decor/snow/house2.svg -------------------------------------------------------------------------------- /game/static/game/image/decor/snow/pond.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/decor/snow/pond.svg -------------------------------------------------------------------------------- /game/static/game/image/decor/snow/school.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/decor/snow/school.svg -------------------------------------------------------------------------------- /game/static/game/image/decor/snow/shop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/decor/snow/shop.svg -------------------------------------------------------------------------------- /game/static/game/image/decor/snow/solar_panel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/decor/snow/solar_panel.svg -------------------------------------------------------------------------------- /game/static/game/image/decor/snow/tile1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/decor/snow/tile1.svg -------------------------------------------------------------------------------- /game/static/game/image/decor/snow/tile2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/decor/snow/tile2.svg -------------------------------------------------------------------------------- /game/static/game/image/decor/snow/tree1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/decor/snow/tree1.svg -------------------------------------------------------------------------------- /game/static/game/image/decor/snow/tree2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/decor/snow/tree2.svg -------------------------------------------------------------------------------- /game/static/game/image/desc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/desc.gif -------------------------------------------------------------------------------- /game/static/game/image/electric_van.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/electric_van.svg -------------------------------------------------------------------------------- /game/static/game/image/empty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/empty.svg -------------------------------------------------------------------------------- /game/static/game/image/fruit/apple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/fruit/apple.svg -------------------------------------------------------------------------------- /game/static/game/image/fruit/apple1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/fruit/apple1.svg -------------------------------------------------------------------------------- /game/static/game/image/fruit/apple2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/fruit/apple2.svg -------------------------------------------------------------------------------- /game/static/game/image/fruit/banana.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/fruit/banana.svg -------------------------------------------------------------------------------- /game/static/game/image/fruit/banana1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/fruit/banana1.svg -------------------------------------------------------------------------------- /game/static/game/image/fruit/banana2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/fruit/banana2.svg -------------------------------------------------------------------------------- /game/static/game/image/fruit/orange.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/fruit/orange.svg -------------------------------------------------------------------------------- /game/static/game/image/fuelGauge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/fuelGauge.svg -------------------------------------------------------------------------------- /game/static/game/image/fuelGaugePointer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/fuelGaugePointer.svg -------------------------------------------------------------------------------- /game/static/game/image/icons/add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/icons/add.svg -------------------------------------------------------------------------------- /game/static/game/image/icons/add_house.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/icons/add_house.svg -------------------------------------------------------------------------------- /game/static/game/image/icons/add_road.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/icons/add_road.svg -------------------------------------------------------------------------------- /game/static/game/image/icons/big_code_mode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/icons/big_code_mode.svg -------------------------------------------------------------------------------- /game/static/game/image/icons/blockly.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/icons/blockly.svg -------------------------------------------------------------------------------- /game/static/game/image/icons/character.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/icons/character.svg -------------------------------------------------------------------------------- /game/static/game/image/icons/clear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/icons/clear.svg -------------------------------------------------------------------------------- /game/static/game/image/icons/day.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/icons/day.svg -------------------------------------------------------------------------------- /game/static/game/image/icons/decor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/icons/decor.svg -------------------------------------------------------------------------------- /game/static/game/image/icons/delete_decor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/icons/delete_decor.svg -------------------------------------------------------------------------------- /game/static/game/image/icons/delete_house.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/icons/delete_house.svg -------------------------------------------------------------------------------- /game/static/game/image/icons/delete_road.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/icons/delete_road.svg -------------------------------------------------------------------------------- /game/static/game/image/icons/description.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/icons/description.svg -------------------------------------------------------------------------------- /game/static/game/image/icons/fast.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/icons/fast.svg -------------------------------------------------------------------------------- /game/static/game/image/icons/help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/icons/help.svg -------------------------------------------------------------------------------- /game/static/game/image/icons/hide.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/icons/hide.svg -------------------------------------------------------------------------------- /game/static/game/image/icons/hide_button.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/icons/hide_button.svg -------------------------------------------------------------------------------- /game/static/game/image/icons/hint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/icons/hint.svg -------------------------------------------------------------------------------- /game/static/game/image/icons/if_else.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/icons/if_else.svg -------------------------------------------------------------------------------- /game/static/game/image/icons/load.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/icons/load.svg -------------------------------------------------------------------------------- /game/static/game/image/icons/map.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/icons/map.svg -------------------------------------------------------------------------------- /game/static/game/image/icons/muted.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/icons/muted.svg -------------------------------------------------------------------------------- /game/static/game/image/icons/night.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/icons/night.svg -------------------------------------------------------------------------------- /game/static/game/image/icons/origin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/icons/origin.svg -------------------------------------------------------------------------------- /game/static/game/image/icons/pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/icons/pause.svg -------------------------------------------------------------------------------- /game/static/game/image/icons/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/icons/play.svg -------------------------------------------------------------------------------- /game/static/game/image/icons/print.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/icons/print.svg -------------------------------------------------------------------------------- /game/static/game/image/icons/python.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/icons/python.svg -------------------------------------------------------------------------------- /game/static/game/image/icons/quit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/icons/quit.svg -------------------------------------------------------------------------------- /game/static/game/image/icons/random.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/icons/random.svg -------------------------------------------------------------------------------- /game/static/game/image/icons/save.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/icons/save.svg -------------------------------------------------------------------------------- /game/static/game/image/icons/share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/icons/share.svg -------------------------------------------------------------------------------- /game/static/game/image/icons/show.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/icons/show.svg -------------------------------------------------------------------------------- /game/static/game/image/icons/slow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/icons/slow.svg -------------------------------------------------------------------------------- /game/static/game/image/icons/solve.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/icons/solve.svg -------------------------------------------------------------------------------- /game/static/game/image/icons/step.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/icons/step.svg -------------------------------------------------------------------------------- /game/static/game/image/icons/stop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/icons/stop.svg -------------------------------------------------------------------------------- /game/static/game/image/icons/unmuted.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/icons/unmuted.svg -------------------------------------------------------------------------------- /game/static/game/image/if_else_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/if_else_example.png -------------------------------------------------------------------------------- /game/static/game/image/key.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/key.svg -------------------------------------------------------------------------------- /game/static/game/image/ocadoVan_big.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/ocadoVan_big.svg -------------------------------------------------------------------------------- /game/static/game/image/package.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/package.svg -------------------------------------------------------------------------------- /game/static/game/image/pigeon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/pigeon.svg -------------------------------------------------------------------------------- /game/static/game/image/python_den_header.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/python_den_header.svg -------------------------------------------------------------------------------- /game/static/game/image/sp_cow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/sp_cow.svg -------------------------------------------------------------------------------- /game/static/game/image/speedoFuel1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/speedoFuel1.svg -------------------------------------------------------------------------------- /game/static/game/image/speedoFuel1_fuel_pointer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/speedoFuel1_fuel_pointer.svg -------------------------------------------------------------------------------- /game/static/game/image/speedoFuel1_meter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/speedoFuel1_meter.svg -------------------------------------------------------------------------------- /game/static/game/image/speedoFuel1_speed_pointer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/speedoFuel1_speed_pointer.svg -------------------------------------------------------------------------------- /game/static/game/image/speedoFuel2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/speedoFuel2.svg -------------------------------------------------------------------------------- /game/static/game/image/speedoFuel2_fuel_pointer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/speedoFuel2_fuel_pointer.svg -------------------------------------------------------------------------------- /game/static/game/image/speedoFuel2_meter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/speedoFuel2_meter.svg -------------------------------------------------------------------------------- /game/static/game/image/speedoFuel2_speed_pointer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/speedoFuel2_speed_pointer.svg -------------------------------------------------------------------------------- /game/static/game/image/speedoFuel_v2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/speedoFuel_v2.svg -------------------------------------------------------------------------------- /game/static/game/image/trafficLight_green.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/trafficLight_green.svg -------------------------------------------------------------------------------- /game/static/game/image/trafficLight_red.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/trafficLight_red.svg -------------------------------------------------------------------------------- /game/static/game/image/trashcan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/trashcan.svg -------------------------------------------------------------------------------- /game/static/game/image/trashcan_lid_closed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/trashcan_lid_closed.svg -------------------------------------------------------------------------------- /game/static/game/image/trashcan_lid_open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/trashcan_lid_open.svg -------------------------------------------------------------------------------- /game/static/game/image/van.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/van.svg -------------------------------------------------------------------------------- /game/static/game/image/van_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/van_small.svg -------------------------------------------------------------------------------- /game/static/game/image/van_small2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/van_small2.svg -------------------------------------------------------------------------------- /game/static/game/image/zebraCrossing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/image/zebraCrossing.svg -------------------------------------------------------------------------------- /game/static/game/js/animation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/animation.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/blockly_compressed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/blockly_compressed.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/blockly_uncompressed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/blockly_uncompressed.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/blocks_compressed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/blocks_compressed.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/javascript_compressed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/javascript_compressed.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/media/1x1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/media/1x1.gif -------------------------------------------------------------------------------- /game/static/game/js/blockly/media/click.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/media/click.mp3 -------------------------------------------------------------------------------- /game/static/game/js/blockly/media/click.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/media/click.ogg -------------------------------------------------------------------------------- /game/static/game/js/blockly/media/click.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/media/click.wav -------------------------------------------------------------------------------- /game/static/game/js/blockly/media/delete.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/media/delete.mp3 -------------------------------------------------------------------------------- /game/static/game/js/blockly/media/delete.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/media/delete.ogg -------------------------------------------------------------------------------- /game/static/game/js/blockly/media/delete.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/media/delete.wav -------------------------------------------------------------------------------- /game/static/game/js/blockly/media/disconnect.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/media/disconnect.mp3 -------------------------------------------------------------------------------- /game/static/game/js/blockly/media/disconnect.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/media/disconnect.ogg -------------------------------------------------------------------------------- /game/static/game/js/blockly/media/disconnect.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/media/disconnect.wav -------------------------------------------------------------------------------- /game/static/game/js/blockly/media/handclosed.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/media/handclosed.cur -------------------------------------------------------------------------------- /game/static/game/js/blockly/media/handdelete.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/media/handdelete.cur -------------------------------------------------------------------------------- /game/static/game/js/blockly/media/handopen.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/media/handopen.cur -------------------------------------------------------------------------------- /game/static/game/js/blockly/media/quote0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/media/quote0.png -------------------------------------------------------------------------------- /game/static/game/js/blockly/media/quote1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/media/quote1.png -------------------------------------------------------------------------------- /game/static/game/js/blockly/media/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/media/sprites.png -------------------------------------------------------------------------------- /game/static/game/js/blockly/media/sprites.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/media/sprites.svg -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/ab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/ab.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/ar.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/az.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/ba.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/ba.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/bcc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/bcc.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/be-tarask.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/be-tarask.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/be.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/be.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/bg.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/bn.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/br.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/ca.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/cs.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/da.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/de.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/diq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/diq.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/dty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/dty.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/el.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/en-gb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/en-gb.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/en.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/eo.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/es.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/et.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/eu.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/fa.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/fi.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/fr.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/gl.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/gor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/gor.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/ha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/ha.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/he.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/hi.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/hrx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/hrx.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/hu.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/hy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/hy.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/ia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/ia.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/id.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/ig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/ig.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/is.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/it.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/ja.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/kab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/kab.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/ko.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/lb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/lb.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/lki.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/lki.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/lo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/lo.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/lrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/lrc.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/lt.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/lv.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/mk.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/mnw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/mnw.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/ms.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/nb.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/nl.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/oc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/oc.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/pl.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/pms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/pms.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/pt-br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/pt-br.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/pt.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/ro.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/ru.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/sc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/sc.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/sd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/sd.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/shn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/shn.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/sk.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/skr-arab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/skr-arab.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/sl.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/sq.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/sr-latn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/sr-latn.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/sr.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/sv.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/ta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/ta.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/tcy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/tcy.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/te.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/te.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/th.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/tl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/tl.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/tlh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/tlh.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/tr.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/ug-arab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/ug-arab.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/uk.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/ur.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/ur.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/vi.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/xmf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/xmf.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/yo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/yo.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/zh-hans.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/zh-hans.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/js/zh-hant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/js/zh-hant.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/ab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/ab.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/ar.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/az.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/az.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/ba.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/ba.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/bcc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/bcc.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/be-tarask.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/be-tarask.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/be.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/be.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/bg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/bg.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/bn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/bn.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/br.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/br.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/ca.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/constants.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/constants.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/cs.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/da.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/da.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/de.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/diq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/diq.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/dty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/dty.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/el.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/el.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/en-gb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/en-gb.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/en.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/eo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/eo.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/es.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/et.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/et.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/eu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/eu.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/fa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/fa.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/fi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/fi.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/fr.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/gl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/gl.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/gor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/gor.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/ha.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/ha.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/he.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/he.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/hi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/hi.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/hrx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/hrx.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/hu.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/hy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/hy.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/ia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/ia.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/id.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/ig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/ig.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/is.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/is.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/it.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/ja.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/kab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/kab.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/ko.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/lb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/lb.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/lki.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/lki.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/lo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/lo.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/lrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/lrc.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/lt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/lt.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/lv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/lv.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/mk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/mk.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/mnw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/mnw.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/ms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/ms.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/nb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/nb.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/nl.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/oc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/oc.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/pl.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/pms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/pms.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/pt-br.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/pt-br.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/pt.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/qqq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/qqq.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/ro.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/ru.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/sc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/sc.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/sd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/sd.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/shn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/shn.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/sk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/sk.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/skr-arab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/skr-arab.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/sl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/sl.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/sq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/sq.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/sr-latn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/sr-latn.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/sr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/sr.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/sv.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/synonyms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/synonyms.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/ta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/ta.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/tcy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/tcy.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/te.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/te.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/th.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/th.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/tl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/tl.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/tlh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/tlh.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/tr.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/ug-arab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/ug-arab.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/uk.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/ur.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/ur.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/vi.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/xmf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/xmf.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/yo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/yo.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/zh-hans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/zh-hans.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/json/zh-hant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/json/zh-hant.json -------------------------------------------------------------------------------- /game/static/game/js/blockly/msg/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/msg/messages.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/python_compressed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/python_compressed.js -------------------------------------------------------------------------------- /game/static/game/js/blockly/version.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blockly/version.txt -------------------------------------------------------------------------------- /game/static/game/js/blocklyCompiler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blocklyCompiler.js -------------------------------------------------------------------------------- /game/static/game/js/blocklyControl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blocklyControl.js -------------------------------------------------------------------------------- /game/static/game/js/blocklyCustomBlocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blocklyCustomBlocks.js -------------------------------------------------------------------------------- /game/static/game/js/blocklyCustomisations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blocklyCustomisations.js -------------------------------------------------------------------------------- /game/static/game/js/blocklyMessages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/blocklyMessages.js -------------------------------------------------------------------------------- /game/static/game/js/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/button.js -------------------------------------------------------------------------------- /game/static/game/js/character.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/character.js -------------------------------------------------------------------------------- /game/static/game/js/coordinate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/coordinate.js -------------------------------------------------------------------------------- /game/static/game/js/cow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/cow.js -------------------------------------------------------------------------------- /game/static/game/js/dataTables.fixedColumns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/dataTables.fixedColumns.js -------------------------------------------------------------------------------- /game/static/game/js/destination.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/destination.js -------------------------------------------------------------------------------- /game/static/game/js/drawing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/drawing.js -------------------------------------------------------------------------------- /game/static/game/js/drawingConstants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/drawingConstants.js -------------------------------------------------------------------------------- /game/static/game/js/editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/editor.js -------------------------------------------------------------------------------- /game/static/game/js/event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/event.js -------------------------------------------------------------------------------- /game/static/game/js/foundation/foundation.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/foundation/foundation.min.js -------------------------------------------------------------------------------- /game/static/game/js/foundation/foundation/foundation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/foundation/foundation/foundation.js -------------------------------------------------------------------------------- /game/static/game/js/foundation/foundation/foundation.tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/foundation/foundation/foundation.tab.js -------------------------------------------------------------------------------- /game/static/game/js/foundation/vendor/fastclick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/foundation/vendor/fastclick.js -------------------------------------------------------------------------------- /game/static/game/js/foundation/vendor/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/foundation/vendor/jquery.js -------------------------------------------------------------------------------- /game/static/game/js/foundation/vendor/js.cookie.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/foundation/vendor/js.cookie.min.js -------------------------------------------------------------------------------- /game/static/game/js/foundation/vendor/modernizr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/foundation/vendor/modernizr.js -------------------------------------------------------------------------------- /game/static/game/js/foundation/vendor/placeholder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/foundation/vendor/placeholder.js -------------------------------------------------------------------------------- /game/static/game/js/fpsmeter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/fpsmeter.js -------------------------------------------------------------------------------- /game/static/game/js/game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/game.js -------------------------------------------------------------------------------- /game/static/game/js/handlebars.runtime-v4.7.7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/handlebars.runtime-v4.7.7.js -------------------------------------------------------------------------------- /game/static/game/js/howler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/howler.js -------------------------------------------------------------------------------- /game/static/game/js/jquery.dataTables.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/jquery.dataTables.min.js -------------------------------------------------------------------------------- /game/static/game/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/jquery.js -------------------------------------------------------------------------------- /game/static/game/js/jquery.outerhtml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/jquery.outerhtml.js -------------------------------------------------------------------------------- /game/static/game/js/jquery.touchy.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/jquery.touchy.min.js -------------------------------------------------------------------------------- /game/static/game/js/level_editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/level_editor.js -------------------------------------------------------------------------------- /game/static/game/js/level_editor/level_save_state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/level_editor/level_save_state.js -------------------------------------------------------------------------------- /game/static/game/js/level_editor/owned_levels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/level_editor/owned_levels.js -------------------------------------------------------------------------------- /game/static/game/js/level_moderation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/level_moderation.js -------------------------------------------------------------------------------- /game/static/game/js/level_selection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/level_selection.js -------------------------------------------------------------------------------- /game/static/game/js/loadLanguages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/loadLanguages.js -------------------------------------------------------------------------------- /game/static/game/js/map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/map.js -------------------------------------------------------------------------------- /game/static/game/js/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/messages.js -------------------------------------------------------------------------------- /game/static/game/js/mobile-detect.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/mobile-detect.min.js -------------------------------------------------------------------------------- /game/static/game/js/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/model.js -------------------------------------------------------------------------------- /game/static/game/js/node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/node.js -------------------------------------------------------------------------------- /game/static/game/js/pathFinder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/pathFinder.js -------------------------------------------------------------------------------- /game/static/game/js/program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/program.js -------------------------------------------------------------------------------- /game/static/game/js/pythonControl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/pythonControl.js -------------------------------------------------------------------------------- /game/static/game/js/raphael.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/raphael.js -------------------------------------------------------------------------------- /game/static/game/js/saving.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/saving.js -------------------------------------------------------------------------------- /game/static/game/js/scoreboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/scoreboard.js -------------------------------------------------------------------------------- /game/static/game/js/scoreboardSharedLevels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/scoreboardSharedLevels.js -------------------------------------------------------------------------------- /game/static/game/js/sharing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/sharing.js -------------------------------------------------------------------------------- /game/static/game/js/skulpt/codemirror.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/skulpt/codemirror.js -------------------------------------------------------------------------------- /game/static/game/js/skulpt/python.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/skulpt/python.js -------------------------------------------------------------------------------- /game/static/game/js/skulpt/skulpt-stdlib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/skulpt/skulpt-stdlib.js -------------------------------------------------------------------------------- /game/static/game/js/skulpt/skulpt.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/skulpt/skulpt.min.js -------------------------------------------------------------------------------- /game/static/game/js/sound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/sound.js -------------------------------------------------------------------------------- /game/static/game/js/svginnerhtml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/svginnerhtml.js -------------------------------------------------------------------------------- /game/static/game/js/tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/tab.js -------------------------------------------------------------------------------- /game/static/game/js/templates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/templates.js -------------------------------------------------------------------------------- /game/static/game/js/trafficLight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/trafficLight.js -------------------------------------------------------------------------------- /game/static/game/js/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/utils.js -------------------------------------------------------------------------------- /game/static/game/js/van.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/js/van.js -------------------------------------------------------------------------------- /game/static/game/raphael_image/Clarice.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/raphael_image/Clarice.svg -------------------------------------------------------------------------------- /game/static/game/raphael_image/Clarice_Jersey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/raphael_image/Clarice_Jersey.svg -------------------------------------------------------------------------------- /game/static/game/raphael_image/Clarice_v1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/raphael_image/Clarice_v1.svg -------------------------------------------------------------------------------- /game/static/game/raphael_image/Clarice_v2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/raphael_image/Clarice_v2.svg -------------------------------------------------------------------------------- /game/static/game/raphael_image/characters/top_view/Dee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/raphael_image/characters/top_view/Dee.svg -------------------------------------------------------------------------------- /game/static/game/raphael_image/characters/top_view/Phil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/raphael_image/characters/top_view/Phil.svg -------------------------------------------------------------------------------- /game/static/game/raphael_image/characters/top_view/Van.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/raphael_image/characters/top_view/Van.svg -------------------------------------------------------------------------------- /game/static/game/raphael_image/characters/top_view/Van2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/raphael_image/characters/top_view/Van2.svg -------------------------------------------------------------------------------- /game/static/game/raphael_image/characters/top_view/Wes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/raphael_image/characters/top_view/Wes.svg -------------------------------------------------------------------------------- /game/static/game/raphael_image/decor/city/bush.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/raphael_image/decor/city/bush.svg -------------------------------------------------------------------------------- /game/static/game/raphael_image/decor/city/hospital.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/raphael_image/decor/city/hospital.svg -------------------------------------------------------------------------------- /game/static/game/raphael_image/decor/city/house.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/raphael_image/decor/city/house.svg -------------------------------------------------------------------------------- /game/static/game/raphael_image/decor/city/pavementTile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/raphael_image/decor/city/pavementTile.png -------------------------------------------------------------------------------- /game/static/game/raphael_image/decor/city/school.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/raphael_image/decor/city/school.svg -------------------------------------------------------------------------------- /game/static/game/raphael_image/decor/city/shop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/raphael_image/decor/city/shop.svg -------------------------------------------------------------------------------- /game/static/game/raphael_image/decor/city/solar_panel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/raphael_image/decor/city/solar_panel.svg -------------------------------------------------------------------------------- /game/static/game/raphael_image/decor/farm/bush.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/raphael_image/decor/farm/bush.svg -------------------------------------------------------------------------------- /game/static/game/raphael_image/decor/farm/cfc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/raphael_image/decor/farm/cfc.svg -------------------------------------------------------------------------------- /game/static/game/raphael_image/decor/farm/cfc_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/raphael_image/decor/farm/cfc_black.svg -------------------------------------------------------------------------------- /game/static/game/raphael_image/decor/farm/crops.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/raphael_image/decor/farm/crops.svg -------------------------------------------------------------------------------- /game/static/game/raphael_image/decor/farm/house1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/raphael_image/decor/farm/house1.svg -------------------------------------------------------------------------------- /game/static/game/raphael_image/decor/farm/house2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/raphael_image/decor/farm/house2.svg -------------------------------------------------------------------------------- /game/static/game/raphael_image/decor/farm/solar_panel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/raphael_image/decor/farm/solar_panel.svg -------------------------------------------------------------------------------- /game/static/game/raphael_image/decor/farm/tile1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/raphael_image/decor/farm/tile1.svg -------------------------------------------------------------------------------- /game/static/game/raphael_image/decor/farm/tree1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/raphael_image/decor/farm/tree1.svg -------------------------------------------------------------------------------- /game/static/game/raphael_image/decor/farm/tree2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/raphael_image/decor/farm/tree2.svg -------------------------------------------------------------------------------- /game/static/game/raphael_image/decor/grass/bush.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/raphael_image/decor/grass/bush.svg -------------------------------------------------------------------------------- /game/static/game/raphael_image/decor/grass/cfc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/raphael_image/decor/grass/cfc.svg -------------------------------------------------------------------------------- /game/static/game/raphael_image/decor/grass/house.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/raphael_image/decor/grass/house.svg -------------------------------------------------------------------------------- /game/static/game/raphael_image/decor/grass/pond.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/raphael_image/decor/grass/pond.svg -------------------------------------------------------------------------------- /game/static/game/raphael_image/decor/grass/solar_panel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/raphael_image/decor/grass/solar_panel.svg -------------------------------------------------------------------------------- /game/static/game/raphael_image/decor/grass/tile1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/raphael_image/decor/grass/tile1.svg -------------------------------------------------------------------------------- /game/static/game/raphael_image/decor/grass/tree1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/raphael_image/decor/grass/tree1.svg -------------------------------------------------------------------------------- /game/static/game/raphael_image/decor/grass/tree2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/raphael_image/decor/grass/tree2.svg -------------------------------------------------------------------------------- /game/static/game/raphael_image/decor/snow/barn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/raphael_image/decor/snow/barn.svg -------------------------------------------------------------------------------- /game/static/game/raphael_image/decor/snow/bush.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/raphael_image/decor/snow/bush.svg -------------------------------------------------------------------------------- /game/static/game/raphael_image/decor/snow/cfc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/raphael_image/decor/snow/cfc.svg -------------------------------------------------------------------------------- /game/static/game/raphael_image/decor/snow/crops.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/raphael_image/decor/snow/crops.svg -------------------------------------------------------------------------------- /game/static/game/raphael_image/decor/snow/hospital.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/raphael_image/decor/snow/hospital.svg -------------------------------------------------------------------------------- /game/static/game/raphael_image/decor/snow/house.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/raphael_image/decor/snow/house.svg -------------------------------------------------------------------------------- /game/static/game/raphael_image/decor/snow/house1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/raphael_image/decor/snow/house1.svg -------------------------------------------------------------------------------- /game/static/game/raphael_image/decor/snow/house2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/raphael_image/decor/snow/house2.svg -------------------------------------------------------------------------------- /game/static/game/raphael_image/decor/snow/pond.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/raphael_image/decor/snow/pond.svg -------------------------------------------------------------------------------- /game/static/game/raphael_image/decor/snow/school.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/raphael_image/decor/snow/school.svg -------------------------------------------------------------------------------- /game/static/game/raphael_image/decor/snow/shop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/raphael_image/decor/snow/shop.svg -------------------------------------------------------------------------------- /game/static/game/raphael_image/decor/snow/solar_panel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/raphael_image/decor/snow/solar_panel.svg -------------------------------------------------------------------------------- /game/static/game/raphael_image/decor/snow/tile1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/raphael_image/decor/snow/tile1.svg -------------------------------------------------------------------------------- /game/static/game/raphael_image/decor/snow/tile2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/raphael_image/decor/snow/tile2.svg -------------------------------------------------------------------------------- /game/static/game/raphael_image/decor/snow/tree1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/raphael_image/decor/snow/tree1.svg -------------------------------------------------------------------------------- /game/static/game/raphael_image/decor/snow/tree2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/raphael_image/decor/snow/tree2.svg -------------------------------------------------------------------------------- /game/static/game/raphael_image/fire.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/raphael_image/fire.svg -------------------------------------------------------------------------------- /game/static/game/raphael_image/pigeon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/raphael_image/pigeon.svg -------------------------------------------------------------------------------- /game/static/game/raphael_image/road_tiles/path/dead_end.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/raphael_image/road_tiles/path/dead_end.svg -------------------------------------------------------------------------------- /game/static/game/raphael_image/road_tiles/path/straight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/raphael_image/road_tiles/path/straight.svg -------------------------------------------------------------------------------- /game/static/game/raphael_image/road_tiles/path/turn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/raphael_image/road_tiles/path/turn.svg -------------------------------------------------------------------------------- /game/static/game/raphael_image/road_tiles/road/dead_end.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/raphael_image/road_tiles/road/dead_end.svg -------------------------------------------------------------------------------- /game/static/game/raphael_image/road_tiles/road/straight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/raphael_image/road_tiles/road/straight.svg -------------------------------------------------------------------------------- /game/static/game/raphael_image/road_tiles/road/turn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/raphael_image/road_tiles/road/turn.svg -------------------------------------------------------------------------------- /game/static/game/raphael_image/sleigh_wreckage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/raphael_image/sleigh_wreckage.svg -------------------------------------------------------------------------------- /game/static/game/raphael_image/smoke.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/raphael_image/smoke.svg -------------------------------------------------------------------------------- /game/static/game/raphael_image/sp_cow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/raphael_image/sp_cow.svg -------------------------------------------------------------------------------- /game/static/game/raphael_image/trafficLight_green.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/raphael_image/trafficLight_green.svg -------------------------------------------------------------------------------- /game/static/game/raphael_image/trafficLight_red.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/raphael_image/trafficLight_red.svg -------------------------------------------------------------------------------- /game/static/game/raphael_image/van_wreckage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/raphael_image/van_wreckage.svg -------------------------------------------------------------------------------- /game/static/game/sass/_foundation_overrides.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/sass/_foundation_overrides.scss -------------------------------------------------------------------------------- /game/static/game/sass/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/sass/_mixins.scss -------------------------------------------------------------------------------- /game/static/game/sass/_styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/sass/_styles.scss -------------------------------------------------------------------------------- /game/static/game/sass/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/sass/_variables.scss -------------------------------------------------------------------------------- /game/static/game/sass/foundation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/sass/foundation.scss -------------------------------------------------------------------------------- /game/static/game/sass/foundation/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/sass/foundation/_functions.scss -------------------------------------------------------------------------------- /game/static/game/sass/foundation/_settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/sass/foundation/_settings.scss -------------------------------------------------------------------------------- /game/static/game/sass/foundation/components/_accordion.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/sass/foundation/components/_accordion.scss -------------------------------------------------------------------------------- /game/static/game/sass/foundation/components/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/sass/foundation/components/_buttons.scss -------------------------------------------------------------------------------- /game/static/game/sass/foundation/components/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/sass/foundation/components/_forms.scss -------------------------------------------------------------------------------- /game/static/game/sass/foundation/components/_global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/sass/foundation/components/_global.scss -------------------------------------------------------------------------------- /game/static/game/sass/foundation/components/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/sass/foundation/components/_grid.scss -------------------------------------------------------------------------------- /game/static/game/sass/foundation/components/_joyride.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/sass/foundation/components/_joyride.scss -------------------------------------------------------------------------------- /game/static/game/sass/foundation/components/_labels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/sass/foundation/components/_labels.scss -------------------------------------------------------------------------------- /game/static/game/sass/foundation/components/_orbit.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/sass/foundation/components/_orbit.scss -------------------------------------------------------------------------------- /game/static/game/sass/foundation/components/_panels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/sass/foundation/components/_panels.scss -------------------------------------------------------------------------------- /game/static/game/sass/foundation/components/_reveal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/sass/foundation/components/_reveal.scss -------------------------------------------------------------------------------- /game/static/game/sass/foundation/components/_sub-nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/sass/foundation/components/_sub-nav.scss -------------------------------------------------------------------------------- /game/static/game/sass/foundation/components/_switch.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/sass/foundation/components/_switch.scss -------------------------------------------------------------------------------- /game/static/game/sass/foundation/components/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/sass/foundation/components/_tables.scss -------------------------------------------------------------------------------- /game/static/game/sass/foundation/components/_tabs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/sass/foundation/components/_tabs.scss -------------------------------------------------------------------------------- /game/static/game/sass/foundation/components/_thumbs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/sass/foundation/components/_thumbs.scss -------------------------------------------------------------------------------- /game/static/game/sass/foundation/components/_toolbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/sass/foundation/components/_toolbar.scss -------------------------------------------------------------------------------- /game/static/game/sass/foundation/components/_top-bar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/sass/foundation/components/_top-bar.scss -------------------------------------------------------------------------------- /game/static/game/sass/foundation/components/_type.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/sass/foundation/components/_type.scss -------------------------------------------------------------------------------- /game/static/game/sass/game.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/sass/game.scss -------------------------------------------------------------------------------- /game/static/game/sound/clown_horn.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/sound/clown_horn.mp3 -------------------------------------------------------------------------------- /game/static/game/sound/clown_horn.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/sound/clown_horn.ogg -------------------------------------------------------------------------------- /game/static/game/sound/cow.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/sound/cow.mp3 -------------------------------------------------------------------------------- /game/static/game/sound/cow.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/sound/cow.ogg -------------------------------------------------------------------------------- /game/static/game/sound/cow_original.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/sound/cow_original.mp3 -------------------------------------------------------------------------------- /game/static/game/sound/cow_original.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/sound/cow_original.ogg -------------------------------------------------------------------------------- /game/static/game/sound/crash.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/sound/crash.mp3 -------------------------------------------------------------------------------- /game/static/game/sound/crash.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/sound/crash.ogg -------------------------------------------------------------------------------- /game/static/game/sound/delivery.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/sound/delivery.mp3 -------------------------------------------------------------------------------- /game/static/game/sound/delivery.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/sound/delivery.ogg -------------------------------------------------------------------------------- /game/static/game/sound/electric_van_starting.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/sound/electric_van_starting.mp3 -------------------------------------------------------------------------------- /game/static/game/sound/electric_van_starting.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/sound/electric_van_starting.ogg -------------------------------------------------------------------------------- /game/static/game/sound/failure.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/sound/failure.mp3 -------------------------------------------------------------------------------- /game/static/game/sound/failure.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/sound/failure.ogg -------------------------------------------------------------------------------- /game/static/game/sound/horn.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/sound/horn.mp3 -------------------------------------------------------------------------------- /game/static/game/sound/horn.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/sound/horn.ogg -------------------------------------------------------------------------------- /game/static/game/sound/moving.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/sound/moving.mp3 -------------------------------------------------------------------------------- /game/static/game/sound/moving.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/sound/moving.ogg -------------------------------------------------------------------------------- /game/static/game/sound/pigeon.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/sound/pigeon.mp3 -------------------------------------------------------------------------------- /game/static/game/sound/pigeon.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/sound/pigeon.ogg -------------------------------------------------------------------------------- /game/static/game/sound/sleigh_bells.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/sound/sleigh_bells.mp3 -------------------------------------------------------------------------------- /game/static/game/sound/sleigh_bells.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/sound/sleigh_bells.ogg -------------------------------------------------------------------------------- /game/static/game/sound/sleigh_crash.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/sound/sleigh_crash.mp3 -------------------------------------------------------------------------------- /game/static/game/sound/sleigh_crash.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/sound/sleigh_crash.ogg -------------------------------------------------------------------------------- /game/static/game/sound/starting.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/sound/starting.mp3 -------------------------------------------------------------------------------- /game/static/game/sound/starting.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/sound/starting.ogg -------------------------------------------------------------------------------- /game/static/game/sound/tension.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/sound/tension.mp3 -------------------------------------------------------------------------------- /game/static/game/sound/tension.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/sound/tension.ogg -------------------------------------------------------------------------------- /game/static/game/sound/win.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/sound/win.mp3 -------------------------------------------------------------------------------- /game/static/game/sound/win.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/game/sound/win.ogg -------------------------------------------------------------------------------- /game/static/icons/dee-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/icons/dee-192x192.png -------------------------------------------------------------------------------- /game/static/icons/dee-384x384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/icons/dee-384x384.png -------------------------------------------------------------------------------- /game/static/icons/dee-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/icons/dee-512x512.png -------------------------------------------------------------------------------- /game/static/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/static/manifest.json -------------------------------------------------------------------------------- /game/templates/game/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/templates/game/base.html -------------------------------------------------------------------------------- /game/templates/game/basenonav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/templates/game/basenonav.html -------------------------------------------------------------------------------- /game/templates/game/crowdin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/templates/game/crowdin.html -------------------------------------------------------------------------------- /game/templates/game/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/templates/game/error.html -------------------------------------------------------------------------------- /game/templates/game/game.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/templates/game/game.html -------------------------------------------------------------------------------- /game/templates/game/level_editor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/templates/game/level_editor.html -------------------------------------------------------------------------------- /game/templates/game/level_moderation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/templates/game/level_moderation.html -------------------------------------------------------------------------------- /game/templates/game/level_selection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/templates/game/level_selection.html -------------------------------------------------------------------------------- /game/templates/game/logged_students.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/templates/game/logged_students.html -------------------------------------------------------------------------------- /game/templates/game/python_den_level_selection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/templates/game/python_den_level_selection.html -------------------------------------------------------------------------------- /game/templates/game/python_den_worksheet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/templates/game/python_den_worksheet.html -------------------------------------------------------------------------------- /game/templates/game/scoreboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/templates/game/scoreboard.html -------------------------------------------------------------------------------- /game/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/templatetags/game/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/templatetags/game/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/templatetags/game/utils.py -------------------------------------------------------------------------------- /game/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/tests/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/tests/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/tests/test_api.py -------------------------------------------------------------------------------- /game/tests/test_level_editor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/tests/test_level_editor.py -------------------------------------------------------------------------------- /game/tests/test_level_moderation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/tests/test_level_moderation.py -------------------------------------------------------------------------------- /game/tests/test_level_selection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/tests/test_level_selection.py -------------------------------------------------------------------------------- /game/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/tests/test_models.py -------------------------------------------------------------------------------- /game/tests/test_python_den_worksheet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/tests/test_python_den_worksheet.py -------------------------------------------------------------------------------- /game/tests/test_random_road.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/tests/test_random_road.py -------------------------------------------------------------------------------- /game/tests/test_scoreboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/tests/test_scoreboard.py -------------------------------------------------------------------------------- /game/tests/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/tests/utils/attempt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/tests/utils/attempt.py -------------------------------------------------------------------------------- /game/tests/utils/episode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/tests/utils/episode.py -------------------------------------------------------------------------------- /game/tests/utils/level.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/tests/utils/level.py -------------------------------------------------------------------------------- /game/tests/utils/locale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/tests/utils/locale.py -------------------------------------------------------------------------------- /game/tests/utils/teacher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/tests/utils/teacher.py -------------------------------------------------------------------------------- /game/tests/utils/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/tests/utils/user.py -------------------------------------------------------------------------------- /game/theme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/theme.py -------------------------------------------------------------------------------- /game/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/urls.py -------------------------------------------------------------------------------- /game/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/views/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/views/api.py -------------------------------------------------------------------------------- /game/views/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/views/helper.py -------------------------------------------------------------------------------- /game/views/language_code_conversions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/views/language_code_conversions.py -------------------------------------------------------------------------------- /game/views/level.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/views/level.py -------------------------------------------------------------------------------- /game/views/level_editor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/views/level_editor.py -------------------------------------------------------------------------------- /game/views/level_moderation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/views/level_moderation.py -------------------------------------------------------------------------------- /game/views/level_selection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/views/level_selection.py -------------------------------------------------------------------------------- /game/views/level_solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/views/level_solutions.py -------------------------------------------------------------------------------- /game/views/scoreboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/views/scoreboard.py -------------------------------------------------------------------------------- /game/views/scoreboard_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/views/scoreboard_csv.py -------------------------------------------------------------------------------- /game/views/worksheet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/game/views/worksheet.py -------------------------------------------------------------------------------- /handlebars/button-dismiss.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/handlebars/button-dismiss.handlebars -------------------------------------------------------------------------------- /handlebars/button-redirect.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/handlebars/button-redirect.handlebars -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/manage.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/pytest.ini -------------------------------------------------------------------------------- /run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/run -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/setup.py -------------------------------------------------------------------------------- /spec/javascripts/blocklyControlSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/spec/javascripts/blocklyControlSpec.js -------------------------------------------------------------------------------- /spec/javascripts/pathFinderSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/spec/javascripts/pathFinderSpec.js -------------------------------------------------------------------------------- /spec/javascripts/support/jasmine.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocadotechnology/rapid-router/HEAD/spec/javascripts/support/jasmine.yml --------------------------------------------------------------------------------